本文整理匯總了Golang中github.com/blackmady/NoneCMS/app/models.Role.GetById方法的典型用法代碼示例。如果您正苦於以下問題:Golang Role.GetById方法的具體用法?Golang Role.GetById怎麽用?Golang Role.GetById使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/blackmady/NoneCMS/app/models.Role
的用法示例。
在下文中一共展示了Role.GetById方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: Edit
//編輯角色
func (c Role) Edit(role *models.Role) 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)
}
role_info := role.GetById(Id)
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
menu := new(models.Menu)
tree := menu.GetMenuTree(role_info.Data, admin_info)
c.Render(title, role_info, tree, Id)
} else {
c.Render(title, role_info, Id)
}
} else {
if UserID, ok := c.Session["UserID"]; ok {
UserID, err := strconv.ParseInt(UserID, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
admin := new(models.Admin)
admin_info := admin.GetById(UserID)
menu := new(models.Menu)
tree := menu.GetMenuTree("", admin_info)
c.Render(title, tree)
} else {
c.Render(title)
}
}
return c.RenderTemplate("Setting/Role/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 rolename string = c.Params.Get("rolename")
if len(rolename) > 0 {
role.Rolename = rolename
} else {
c.Flash.Error("請輸入角色名稱!")
c.Flash.Out["url"] = "/Role/Edit/" + id + "/"
return c.Redirect("/Message/")
}
var desc string = c.Params.Get("desc")
if len(desc) > 0 {
role.Desc = desc
} else {
c.Flash.Error("請輸入角色描述!")
c.Flash.Out["url"] = "/Role/Edit/" + id + "/"
return c.Redirect("/Message/")
}
var data string = c.Params.Get("data")
if len(data) > 0 {
role.Data = data
} else {
c.Flash.Error("請選擇所屬權限!")
c.Flash.Out["url"] = "/Role/Edit/" + id + "/"
return c.Redirect("/Message/")
}
var status string = c.Params.Get("status")
if len(status) > 0 {
Status, err := strconv.ParseInt(status, 10, 64)
if err != nil {
revel.WARN.Println(err)
}
role.Status = Status
} else {
//.........這裏部分代碼省略.........