From 8dce9cb263e272922feaa78fb38c73c895609ba8 Mon Sep 17 00:00:00 2001 From: aarone <184600228@qq.com> Date: Sun, 18 Nov 2018 22:27:21 +0800 Subject: [PATCH] blogcontroller --- controllers/BlogController.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/controllers/BlogController.go b/controllers/BlogController.go index 8b4f6ba..7d97cf4 100644 --- a/controllers/BlogController.go +++ b/controllers/BlogController.go @@ -1,9 +1,9 @@ package controllers import ( - "github.com/astaxie/beego" "beeblog/models" "beeblog/service" + "github.com/astaxie/beego" "strconv" ) @@ -19,7 +19,7 @@ func (this *BlogController) Save() { labels := this.GetStrings("labels[]") blog := &models.Blog{Title: title, BlogHtml: blogHtml, CategoryId: catoryId, UserId: 1} err := service.SaveBlog(blog, labels) - if (err == nil) { + if err == nil { this.Data["json"] = blog } else { this.Data["json"] = models.ReurnError("保存失败") @@ -31,7 +31,7 @@ func (this *BlogController) Get() { idStr := this.Ctx.Input.Param(":id") id, _ := strconv.ParseInt(idStr, 10, 64) blog, err := service.GetBlog(id) - if (err == nil) { + if err == nil { this.Data["Blog"] = blog } this.TplName = "blog.html" @@ -40,3 +40,6 @@ func (this *BlogController) Get() { func (this *BlogController) New() { this.TplName = "newblog.html" } +func (this *BlogController) Blog1() { + this.TplName = "blog1.html" +}