码农笔录博客源码
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

54 行
1.2 KiB

package controllers
import (
"beeblog/models"
"beeblog/service"
"github.com/astaxie/beego"
"strconv"
)
type BlogController struct {
beego.Controller
}
func (this *BlogController) Save() {
6 年前
title := this.GetString("title")
blogHtml := this.GetString("blogHtml")
catory := this.GetString("catory")
catoryId, _ := strconv.ParseInt(catory, 10, 64)
labels := this.GetStrings("labels[]")
6 年前
blog := &models.Blog{Title: title, BlogHtml: blogHtml, CategoryId: catoryId, UserId: 1}
err := service.SaveBlog(blog, labels)
if err == nil {
this.Data["json"] = blog
} else {
this.Data["json"] = models.ReurnError(500,"保存失败")
}
this.ServeJSON()
return
}
func (this *BlogController) Get() {
idStr := this.Ctx.Input.Param(":id")
id, _ := strconv.ParseInt(idStr, 10, 64)
blog, err := service.GetBlog(id)
if err == nil {
this.Data["Blog"] = blog
}
this.TplName = "blog.html"
}
6 年前
func (this *BlogController) New() {
this.TplName = "newblog.html"
6 年前
}
func (this *BlogController) Blog1() {
this.TplName = "blog1.html"
}
func (this *BlogController) BlogsPage() {
blogs,_ := service.FindBlogs()
this.Data["Blogs"] = blogs
this.Data["IsBlog"] = true
this.TplName = "blogs.html"
}