15 Star 61 Fork 10

e9ab98e991ab/GoBooks

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CateController.go 865 Bytes
一键复制 编辑 原始数据 按行查看 历史
高鑫 提交于 2020-01-03 09:39 +08:00 . commit
package controllers
import (
"gitee.com/Godfeer/GoBooks/models"
"github.com/astaxie/beego"
)
type CateController struct {
BaseController
}
//分类
func (this *CateController) List() {
if cates, err := new(models.Category).GetCates(-1, 1); err == nil {
this.Data["Cates"] = cates
} else {
beego.Error(err.Error())
}
this.GetSeoByPage("cate", map[string]string{
"title": "书籍分类",
"keywords": "文档托管,在线创作,文档在线管理,在线知识管理,文档托管平台,在线写书,文档在线转换,在线编辑,在线阅读,开发手册,api手册,文档在线学习,技术文档,在线编辑",
"description": this.Sitename + "专注于文档在线写作、协作、分享、阅读与托管,让每个人更方便地发布、分享和获得知识。",
})
this.Data["IsCate"] = true
this.TplName = "cates/list.html"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/Godfeer/GoBooks.git
git@gitee.com:Godfeer/GoBooks.git
Godfeer
GoBooks
GoBooks
cbd8ecaa8838

搜索帮助