mirror of
https://github.com/beego/bee.git
synced 2024-11-22 05:00:54 +00:00
update apiapp
This commit is contained in:
parent
f839552b8d
commit
550cf6cb71
@ -129,7 +129,7 @@ type ObejctController struct {
|
|||||||
|
|
||||||
func (this *ObejctController) Post() {
|
func (this *ObejctController) Post() {
|
||||||
var ob models.Object
|
var ob models.Object
|
||||||
json.Unmarshal(this.Ctx.RequestBody, &ob)
|
json.Unmarshal(this.Ctx.Input.RequestBody, &ob)
|
||||||
objectid := models.AddOne(ob)
|
objectid := models.AddOne(ob)
|
||||||
this.Data["json"] = map[string]string{"ObjectId": objectid}
|
this.Data["json"] = map[string]string{"ObjectId": objectid}
|
||||||
this.ServeJson()
|
this.ServeJson()
|
||||||
@ -154,7 +154,7 @@ func (this *ObejctController) Get() {
|
|||||||
func (this *ObejctController) Put() {
|
func (this *ObejctController) Put() {
|
||||||
objectId := this.Ctx.Params[":objectId"]
|
objectId := this.Ctx.Params[":objectId"]
|
||||||
var ob models.Object
|
var ob models.Object
|
||||||
json.Unmarshal(this.Ctx.RequestBody, &ob)
|
json.Unmarshal(this.Ctx.Input.RequestBody, &ob)
|
||||||
|
|
||||||
err := models.Update(objectId, ob.Score)
|
err := models.Update(objectId, ob.Score)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -166,7 +166,7 @@ func (this *ObejctController) Put() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *ObejctController) Delete() {
|
func (this *ObejctController) Delete() {
|
||||||
objectId := this.Ctx.Params[":objectId"]
|
objectId := this.Ctx.Input.Params[":objectId"]
|
||||||
models.Delete(objectId)
|
models.Delete(objectId)
|
||||||
this.Data["json"] = "delete success!"
|
this.Data["json"] = "delete success!"
|
||||||
this.ServeJson()
|
this.ServeJson()
|
||||||
|
Loading…
Reference in New Issue
Block a user