`type Activity struct {
//当前登录用户id
userId int64 `json:"userId,omitempty"`
keyword string `json:"keyword,omitempty"`
}
type ActivityGetOneInfo struct {
ActivityInfo *Activity `json:"activity"`
}
a := Activity{1, "xxx"}
c.Data["json"] = ActivityGetOneInfo{ActivityInfo: &a}
c.ServeJSON()`
使用 beego 的时候,返回总是空的,是哪里写错了吗?
解决了 struct 的字段 首字母改成大写的。。。。。
多谢。貌似是可以了。但是其他例子里 传结构体也是可以的
https://github.com/gwduan/beego-demo
和 https://github.com/beego/samples
传值各不相同,请赐教
#4
更多评论