mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 21:20:54 +00:00
Merge pull request #335 from pengfei-xue/devel
beeapi example is broken
This commit is contained in:
commit
9f3058caad
@ -19,7 +19,7 @@ func (this *ObjectController) Post() {
|
||||
}
|
||||
|
||||
func (this *ObjectController) Get() {
|
||||
objectId := this.Ctx.Input.Param[":objectId"]
|
||||
objectId := this.Ctx.Input.Params[":objectId"]
|
||||
if objectId != "" {
|
||||
ob, err := models.GetOne(objectId)
|
||||
if err != nil {
|
||||
@ -35,7 +35,7 @@ func (this *ObjectController) Get() {
|
||||
}
|
||||
|
||||
func (this *ObjectController) Put() {
|
||||
objectId := this.Ctx.Input.Param[":objectId"]
|
||||
objectId := this.Ctx.Input.Params[":objectId"]
|
||||
var ob models.Object
|
||||
json.Unmarshal(this.Ctx.Input.RequestBody, &ob)
|
||||
|
||||
@ -49,7 +49,7 @@ func (this *ObjectController) Put() {
|
||||
}
|
||||
|
||||
func (this *ObjectController) Delete() {
|
||||
objectId := this.Ctx.Input.Param[":objectId"]
|
||||
objectId := this.Ctx.Input.Params[":objectId"]
|
||||
models.Delete(objectId)
|
||||
this.Data["json"] = "delete success!"
|
||||
this.ServeJson()
|
||||
|
Loading…
Reference in New Issue
Block a user