Commit b96f7e2e authored by astaxie's avatar astaxie

Merge pull request #174 from Xelom/FixBra

Changed ObejctController to ObjectController in beeapi
parents f9297379 cde38fbe
......@@ -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!"
......
......@@ -15,6 +15,6 @@ import (
// /object/<objectId> DELETE Deleting Objects
func main() {
beego.RESTRouter("/object", &controllers.ObejctController{})
beego.RESTRouter("/object", &controllers.ObjectController{})
beego.Run()
}
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