1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-25 23:55:18 +00:00

Merge pull request #174 from Xelom/FixBra

Changed ObejctController to ObjectController in beeapi
This commit is contained in:
astaxie 2013-08-27 18:54:52 -07:00
commit b96f7e2ef2
2 changed files with 6 additions and 6 deletions

View File

@ -6,11 +6,11 @@ import (
"github.com/astaxie/beego/example/beeapi/models"
)
type ObejctController struct {
type ObjectController struct {
beego.Controller
}
func (this *ObejctController) Post() {
func (this *ObjectController) Post() {
var ob models.Object
json.Unmarshal(this.Ctx.RequestBody, &ob)
objectid := models.AddOne(ob)
@ -18,7 +18,7 @@ func (this *ObejctController) Post() {
this.ServeJson()
}
func (this *ObejctController) Get() {
func (this *ObjectController) Get() {
objectId := this.Ctx.Params[":objectId"]
if objectId != "" {
ob, err := models.GetOne(objectId)
@ -34,7 +34,7 @@ func (this *ObejctController) Get() {
this.ServeJson()
}
func (this *ObejctController) Put() {
func (this *ObjectController) Put() {
objectId := this.Ctx.Params[":objectId"]
var ob models.Object
json.Unmarshal(this.Ctx.RequestBody, &ob)
@ -48,7 +48,7 @@ func (this *ObejctController) Put() {
this.ServeJson()
}
func (this *ObejctController) Delete() {
func (this *ObjectController) Delete() {
objectId := this.Ctx.Params[":objectId"]
models.Delete(objectId)
this.Data["json"] = "delete success!"

View File

@ -15,6 +15,6 @@ import (
// /object/<objectId> DELETE Deleting Objects
func main() {
beego.RESTRouter("/object", &controllers.ObejctController{})
beego.RESTRouter("/object", &controllers.ObjectController{})
beego.Run()
}