本文整理汇总了Golang中github.com/blackmady/NoneCMS/app/models.Category.Edit方法的典型用法代码示例。如果您正苦于以下问题:Golang Category.Edit方法的具体用法?Golang Category.Edit怎么用?Golang Category.Edit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/blackmady/NoneCMS/app/models.Category
的用法示例。
在下文中一共展示了Category.Edit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: 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 {
//.........这里部分代码省略.........