本文整理匯總了Golang中github.com/blackmady/NoneCMS/app/models.Category.GetCateGoryHtml方法的典型用法代碼示例。如果您正苦於以下問題:Golang Category.GetCateGoryHtml方法的具體用法?Golang Category.GetCateGoryHtml怎麽用?Golang Category.GetCateGoryHtml使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/blackmady/NoneCMS/app/models.Category
的用法示例。
在下文中一共展示了Category.GetCateGoryHtml方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Index
func (c Category) Index(category *models.Category) revel.Result {
title := "欄目管理--GoCMS管理係統"
UserID := utils.GetSession("UserID", c.Session)
if len(UserID) > 0 {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
categorys := category.GetCateGoryHtml(admin_info)
c.Render(title, categorys)
} else {
c.Render(title)
}
return c.RenderTemplate("Content/Category/Index.html")
}