beego curd Values 方法的疑问
我通过使用Values方法获得一定的map
var radio []orm.Params
num, _ := orm.NewOrm().
QueryTable("product_album").
Filter("product_id", id).
Filter("state", 1).
Values(&radio)
但获得的结果首字母都是大写,我已经在model内设置了小写的规则
type ProductAlbum struct {
Id int `json:"id"`
ProductId int `json:"product_id"`
Name string `json:"name"`
Url string `json:"url"`
State string `json:"state"`
}
错误的结果
"radio": [
{
"Id": 37,
"Name": "图片",
"ProductId": 9,
"State": "0",
"Url": "7d9006e1d73d527662e598c1856327f28742"
},
{
"Id": 55,
"Name": "图片",
"ProductId": 9,
"State": "0",
"Url": "38909849c3289db116c020c3d34cfb6f3975"
},
{
"Id": 56,
"Name": "图片",
"ProductId": 9,
"State": "0",
"Url": "a164deb99004f9647f87f21771d19b468181"
}
]
期望的结果
"radio": [
{
"id": 37,
"name": "图片",
"productId": 9,
"state": "0",
"url": "7d9006e1d73d527662e598c1856327f28742"
},
{
"id": 55,
"name": "图片",
"productId": 9,
"state": "0",
"url": "38909849c3289db116c020c3d34cfb6f3975"
},
{
"id": 56,
"name": "图片",
"productId": 9,
"state": "0",
"url": "a164deb99004f9647f87f21771d19b468181"
}
]
请大佬指点一二,谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
orm:"column(id)";json:"id"
这样呢使用json转一下就可以了