コード例 #1
0
ファイル: edit.go プロジェクト: SunChaoran/helloBeego
func (this *EditController) Get() {
	objectId := this.GetString(":ObjectId")
	id := bson.ObjectIdHex(objectId)

	this.Data["Post"] = models.GetBlog(id)
	this.Layout = "layout.tpl"
	this.TplName = "edit.tpl"
}
コード例 #2
0
ファイル: delete.go プロジェクト: SunChaoran/helloBeego
func (this *DeleteController) Get() {

	objectId := this.GetString(":ObjectId")
	id := bson.ObjectIdHex(objectId)

	blog := models.GetBlog(id)
	this.Data["Post"] = blog
	models.DelBlog(blog)
	this.Ctx.Redirect(302, "/")
}