25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/astaxie/beego"
|
|
|
|
"beeblog/models"
|
|
|
|
"beeblog/service"
|
|
|
|
"strconv"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
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[]")
|
|
|
|
fmt.Println(title,blogHtml,catoryId,labels,labels[0])
|
|
|
|
blog := &models.Blog{Title: title,BlogHtml:blogHtml,CategoryId:catoryId}
|
|
|
|
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.Data["IsHome"] = true
|
|
|
|
this.TplName = "blog.html"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *BlogController) New() {
|
|
|
|
this.TplName = "newblog.html"
|
|
|
|
}
|