我正在开发beego应用程序。我试图在两台不同的机器上运行相同的代码。两者都是ubuntu。在一台机器上,它运行没有任何问题,但在其他我得到以下错误日志。我有两个相同的文件组织,为什么你认为这可能会发生?
name.assign(_strupr(name));
连控制器:
controllers/EventController.go:18: this.ServeJson undefined (type *EventController has no field or method ServeJson)
controllers/EventController.go:24: this.ServeJson undefined (type *EventController has no field or method ServeJson)
controllers/EventController.go:30: this.ServeJson undefined (type *EventController has no field or method ServeJson)
controllers/default.go:14: c.TplNames undefined (type *MainController has no field or method TplNames)
答案 0 :(得分:4)
我发现了问题。 Beego在我安装的机器之间发布了新版本。我以为它看不到整个控制器,但它只是功能的名称。
在新版本中:
serveJson() -> serveJSON()
Config也改变了。
Beego.HttpPort -> beego.BConfig.Listen.HTTPPort
答案 1 :(得分:0)
Beego版本1.11.1
这是区分大小写的。
更改
this.ServeJson()
到
this.ServeJSON()