ServeJson undefined (type *MainController has no field or method ServeJson

博客讲述在MainController的get方法中添加返回JSON数据时遇到报错。代码中使用c.serveJson()出现错误提示,指出type *MainController没有该方法,解决办法是将c.serveJson()写成c.ServeJson。

在MainController 中get 方法中添加返回json 数据:

c.Data["json"] = map[string]interface{}{"success": 0, "message": "111"}
c.serveJson()

报错:

# test/controllers
controllers\default.go:19:6: c.ServeJson undefined (type *MainController has no
field or method ServeJson)

报错说的很清楚,上面的(19行)c.serveJson()没有这个方法或者使用 method ServeJson

将c.serveJson() 写成c.ServeJson 即可。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值