本文整理匯總了Golang中models.User.Id方法的典型用法代碼示例。如果您正苦於以下問題:Golang User.Id方法的具體用法?Golang User.Id怎麽用?Golang User.Id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.User
的用法示例。
在下文中一共展示了User.Id方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: CreateUser
// CreateUser creates a new user resource
func (uc UserController) CreateUser(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
// Stub an user to be populated from the body
u := models.User{}
// Populate the user data
json.NewDecoder(r.Body).Decode(&u)
// Add an Id
u.Id = bson.NewObjectId()
// Write the user to mongo
uc.session.DB("go_rest_tutorial").C("users").Insert(u)
// Marshal provided interface into JSON structure
uj, _ := json.Marshal(u)
// Write content-type, statuscode, payload
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(201)
fmt.Fprintf(w, "%s", uj)
}
示例2: SetRoute
func SetRoute(m *martini.ClassicMartini) {
//主頁
m.Get("/", func() string {
return "<b>歡迎使用任務跟蹤管理係統 version 0.1<b>"
})
m.Get("/json", func() []byte {
result, _ := json.Marshal("歡迎使用任務跟蹤管理係統 version 0.1")
return result
})
m.Get("/task/json", func() []byte {
output, _ := json.MarshalIndent(taskList, " ", " ")
return output
})
m.Get("/task/json/:id", func(params martini.Params) []byte {
id, _ := strconv.Atoi(params["id"])
if len(taskList.List) > id {
one := taskList.List[id]
output, _ := json.MarshalIndent(one, " ", " ")
return output
} else {
return []byte("<Task><Content>task not found.</Content></Task>")
}
})
//所有任務
m.Get("/task/all", func() string {
return taskList.String()
})
m.Get("/task/xml", func() []byte {
output, _ := xml.MarshalIndent(taskList, " ", " ")
return output
})
m.Get("/task/xml/:id", func(params martini.Params) []byte {
id, _ := strconv.Atoi(params["id"])
if len(taskList.List) > id {
one := taskList.List[id]
output, _ := xml.MarshalIndent(one, " ", " ")
return output
} else {
return []byte("<Task><Content>task not found.</Content></Task>")
}
})
//單個任務
m.Get("/task/:id", func(params martini.Params) string {
id, _ := strconv.Atoi(params["id"])
if len(taskList.List) > id {
one := taskList.List[id]
return one.String()
} else {
return "<b>task not found.<b>"
}
})
//用戶登錄
m.Get("/hello/:name", func(params martini.Params) string {
var u models.User
u.Id = 999
u.Name = params["name"]
fmt.Println(u)
return "Hello " + params["name"]
})
}