本文整理匯總了Golang中github.com/blackmady/NoneCMS/app/models.Category.Url方法的典型用法代碼示例。如果您正苦於以下問題:Golang Category.Url方法的具體用法?Golang Category.Url怎麽用?Golang Category.Url使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/blackmady/NoneCMS/app/models.Category
的用法示例。
在下文中一共展示了Category.Url方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Add
//添加欄目
func (c Category) Add(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)
}
//返回菜單Option的HTML
categorys := category.GetCateGoryOptionHtml(Id)
c.Render(title, categorys, Id)
} else {
//返回菜單Option的HTML
categorys := category.GetCateGoryOptionHtml(0)
c.Render(title, categorys)
}
return c.RenderTemplate("Content/Category/Add.html")
} else {
//欄目類型
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/Add/"
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/Add/"
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/Add/"
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/Add/"
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/Add/"
return c.Redirect("/Message/")
}
//描述
var desc string = c.Params.Get("desc")
if len(desc) > 0 {
category.Desc = desc
} else {
c.Flash.Error("請輸入描述!")
c.Flash.Out["url"] = "/Category/Add/"
return c.Redirect("/Message/")
}
//是否在導航顯示
var ismenu string = c.Params.Get("ismenu")
if len(ismenu) > 0 {
IsMenu, err := strconv.ParseInt(ismenu, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
//.........這裏部分代碼省略.........