Commit 9ccdb310 authored by astaxie's avatar astaxie

fix #236

parent 0adb8642
......@@ -19,7 +19,7 @@ func (this *ObjectController) Post() {
}
func (this *ObjectController) Get() {
objectId := this.Ctx.Params[":objectId"]
objectId := this.Ctx.Input.Param[":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.Params[":objectId"]
objectId := this.Ctx.Input.Param[":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.Params[":objectId"]
objectId := this.Ctx.Input.Param[":objectId"]
models.Delete(objectId)
this.Data["json"] = "delete success!"
this.ServeJson()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment