本文整理匯總了Golang中github.com/blackmady/NoneCMS/app/models.Category.GetById方法的典型用法代碼示例。如果您正苦於以下問題:Golang Category.GetById方法的具體用法?Golang Category.GetById怎麽用?Golang Category.GetById使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/blackmady/NoneCMS/app/models.Category
的用法示例。
在下文中一共展示了Category.GetById方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: AddContent
//單頁麵 添加內容
func (c Content) AddContent(article *models.Article) revel.Result {
if c.Request.Method == "GET" {
title := "內容--GoCMS添加內容"
var cid string = c.Params.Get("cid")
if len(cid) > 0 {
Cid, err := strconv.ParseInt(cid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//欄目信息
category := new(models.Category)
category_info := category.GetById(Cid)
//內容
article_info := article.GetByCid(Cid)
c.Render(title, cid, category_info, article_info)
return c.RenderTemplate("Content/Manage/AddContent.html")
} else {
c.Render(title, cid)
return c.RenderTemplate("Content/Manage/AddContent.html")
}
} else {
var cid string = c.Params.Get("cid")
if len(cid) < 0 {
c.Flash.Error("請選擇欄目!")
c.Flash.Out["url"] = "/Content/addContent/" + cid + "/"
return c.Redirect("/Message/")
}
UserID := utils.GetSession("UserID", c.Session)
if len(UserID) > 0 {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
article.Aid = UserID
}
var title string = c.Params.Get("title")
if len(title) > 0 {
article.Title = title
} else {
c.Flash.Error("請輸入標題!")
c.Flash.Out["url"] = "/Content/addContent/" + cid + "/"
return c.Redirect("/Message/")
}
var style_color string = c.Params.Get("style_color")
article.Color = style_color
var style_font_weight string = c.Params.Get("style_font_weight")
article.Font = style_font_weight
var keywords string = c.Params.Get("keywords")
if len(keywords) > 0 {
article.Keywords = keywords
} else {
article.Keywords = ""
}
var content string = c.Params.Get("content")
if len(content) > 0 {
article.Content = content
} else {
c.Flash.Error("請輸入內容!")
c.Flash.Out["url"] = "/Content/addContent/" + cid + "/"
return c.Redirect("/Message/")
}
if len(cid) > 0 {
Cid, err := strconv.ParseInt(cid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
article.Cid = Cid
//內容
article_info := article.GetByCid(Cid)
if article_info.Id > 0 {
if article.Edit(article_info.Id) {
c.Flash.Success("編輯內容成功!")
c.Flash.Out["url"] = "/Content/addContent/" + cid + "/"
return c.Redirect("/Message/")
} else {
c.Flash.Success("編輯內容成功!")
c.Flash.Out["url"] = "/Content/addContent/" + cid + "/"
return c.Redirect("/Message/")
}
} else {
//.........這裏部分代碼省略.........
示例2: Edit
//編輯內容
func (c Content) Edit(article *models.Article) revel.Result {
if c.Request.Method == "GET" {
title := "內容--GoCMS編輯內容"
var cid string = c.Params.Get("cid")
var id string = c.Params.Get("id")
if len(cid) > 0 {
Cid, err := strconv.ParseInt(cid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//內容
article_info := article.GetById(Id)
//欄目信息
category := new(models.Category)
category_info := category.GetById(Cid)
//來源
copyfrom := new(models.Copyfrom)
copyfrom_list := copyfrom.GetRoleList()
c.Render(title, cid, category_info, article_info, copyfrom_list)
return c.RenderTemplate("Content/Manage/Edit.html")
} else {
c.Render(title, cid)
return c.RenderTemplate("Content/Manage/Edit.html")
}
} else {
var dosubmit string = c.Params.Get("dosubmit")
var dosubmit_continue string = c.Params.Get("dosubmit_continue")
var cid string = c.Params.Get("cid")
var id string = c.Params.Get("id")
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
var title string = c.Params.Get("title")
if len(title) > 0 {
article.Title = title
} else {
c.Flash.Error("請輸入標題!")
c.Flash.Out["url"] = "/Content/Add/" + cid + "/"
return c.Redirect("/Message/")
}
var style_color string = c.Params.Get("style_color")
article.Color = style_color
var style_font_weight string = c.Params.Get("style_font_weight")
article.Font = style_font_weight
var thumb string = c.Params.Get("thumb")
if len(thumb) > 0 {
//判斷是否是係統的分隔符
separator := "/"
if os.IsPathSeparator('\\') {
separator = "\\"
} else {
separator = "/"
}
config_file := (revel.BasePath + "/conf/config.conf")
config_file = strings.Replace(config_file, "/", separator, -1)
config_conf, _ := config.ReadDefault(config_file)
//前台網站地址
sitedomain, _ := config_conf.String("website", "website.sitedomain")
thumb = strings.Replace(thumb, sitedomain, "", -1)
article.Thumb = thumb
} else {
article.Thumb = ""
}
var content string = c.Params.Get("content")
if len(content) > 0 {
article.Content = content
} else {
c.Flash.Error("請輸入內容!")
c.Flash.Out["url"] = "/Content/Add/" + cid + "/"
return c.Redirect("/Message/")
}
var copyfrom string = c.Params.Get("copyfrom")
//.........這裏部分代碼省略.........
示例3: Edit
//編輯欄目
func (c Category) Edit(category *models.Category) revel.Result {
if c.Request.Method == "GET" {
title := "編輯欄目--GoCMS管理係統"
var id string = c.Params.Get("id")
if len(id) > 0 {
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//獲取菜單信息
category_info := category.GetById(Id)
//返回菜單Option的HTML
categorys := category.GetCateGoryOptionHtml(category_info.Pid)
c.Render(title, categorys, category_info)
} else {
//返回菜單Option的HTML
categorys := category.GetCateGoryOptionHtml(0)
c.Render(title, categorys)
}
return c.RenderTemplate("Content/Category/Edit.html")
} else {
var id string = c.Params.Get("id")
if len(id) > 0 {
Id, err := strconv.ParseInt(id, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//欄目類型
var cate_type string = c.Params.Get("type")
if len(cate_type) > 0 {
Type, err := strconv.ParseInt(cate_type, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Type = Type
} else {
c.Flash.Error("請選擇欄目類型!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//上級欄目
var pid string = c.Params.Get("pid")
if len(pid) > 0 {
Pid, err := strconv.ParseInt(pid, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
category.Pid = Pid
} else {
c.Flash.Error("請選擇父欄目!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//欄目名稱
var name string = c.Params.Get("name")
if len(name) > 0 {
category.Name = name
} else {
c.Flash.Error("請輸入欄目名稱!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
var enname string = c.Params.Get("enname")
if len(enname) > 0 {
category.Enname = enname
} else {
c.Flash.Error("請輸入英文欄目名稱!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//欄目地址
var url string = c.Params.Get("url")
if len(url) > 0 {
category.Url = url
} else {
c.Flash.Error("請輸入欄目地址!")
c.Flash.Out["url"] = "/Category/Edit/" + id + "/"
return c.Redirect("/Message/")
}
//描述
var desc string = c.Params.Get("desc")
if len(desc) > 0 {
category.Desc = desc
} else {
//.........這裏部分代碼省略.........