25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
45 satır
1022 B
45 satır
1022 B
package controllers
|
|
|
|
import (
|
|
"beeblog/models"
|
|
"beeblog/service"
|
|
"github.com/astaxie/beego"
|
|
"strconv"
|
|
)
|
|
|
|
type BlogController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
func (this *BlogController) Save() {
|
|
title := this.GetString("title")
|
|
blogHtml := this.GetString("blogHtml")
|
|
catory := this.GetString("catory")
|
|
catoryId, _ := strconv.ParseInt(catory, 10, 64)
|
|
labels := this.GetStrings("labels[]")
|
|
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("保存失败")
|
|
}
|
|
this.ServeJSON()
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
func (this *BlogController) New() {
|
|
this.TplName = "newblog.html"
|
|
}
|
|
func (this *BlogController) Blog1() {
|
|
this.TplName = "blog1.html"
|
|
}
|
|
|