コード例 #1
0
ファイル: view.go プロジェクト: RandyChou/beeblog
func (this *ViewController) Get() {
	id, _ := strconv.Atoi(this.Ctx.Params[":id"])
	this.Data["Post"] = models.GetBlog(id)
	this.Layout = "layout.tpl"
	this.TplNames = "view.tpl"
}
コード例 #2
0
ファイル: delete.go プロジェクト: RandyChou/beeblog
func (this *DeleteController) Get() {
	id, _ := strconv.Atoi(this.Ctx.Params[":id"])
	models.DelBlog(models.GetBlog(id))
	this.Ctx.Redirect(302, "/")
}