コード例 #1
0
ファイル: guestbook.go プロジェクト: hogenwang/comcms
//删除留言板
func (c *GuestbookController) DoDel() {
	CheckAdminLogin(&c.Controller, 1)
	id, _ := strconv.ParseInt(c.GetString("id"), 10, 64)
	tip := &models.TipJSON{}
	tip.Status = models.TipError
	if id <= 0 {
		tip.Message = "错误参数传递!"
		EchoTip(&c.Controller, tip)
	}
	entity := models.GetGuestbook(id)
	if entity == nil {
		tip.Message = "系统找不到本记录!"
		EchoTip(&c.Controller, tip)
	} else {
		if err := models.DelGuestbook(entity); err != nil {
			tip.Message = "删除出错:" + err.Error()
			EchoTip(&c.Controller, tip)
		} else {
			tip.Status = models.TipSuccess
			tip.Message = "删除成功!"
			tip.ReturnUrl = "/admin/guestbook"
			EchoTip(&c.Controller, tip)
		}
	}
}
コード例 #2
0
ファイル: guestbook.go プロジェクト: hogenwang/comcms
//查看留言板页面
func (c *GuestbookController) View() {
	CheckAdminLogin(&c.Controller, 0)

	myid := c.Ctx.Input.Param(":id")
	id, err := strconv.ParseInt(myid, 10, 64)
	if err != nil {
		EchoErrorPage(&c.Controller, "错误参数传递!", "/admin/guestbook")
	}
	entity := models.GetGuestbook(id)
	if entity == nil {
		EchoErrorPage(&c.Controller, "系统找不到本记录!", "/admin/guestbook")
	}
	c.Data["Title"] = "查看留言板详情"
	c.Data["Action"] = "view"
	c.Data["Entity"] = entity
	c.TplNames = "admin/guestbook_view.tpl"
}