gpt4 book ai didi

arrays - 如何在 json 响应中设置数组 goLang-gin

转载 作者:数据小太阳 更新时间:2023-10-29 03:26:47 25 4
gpt4 key购买 nike

我有一个结构数组存储一个变量我的数组。

结构是

  type myStruct struct {
id int64 `db:"id" json:"id"`
Name string `form:"name" db:"name" json:"name" binding:"required"`
Status string `form:"status" db:"status" json:"status" binding:"required"`

我的数组看起来像这样并存储在变量“myArray”中。该数组是通过迭代来自数据库的一组行而形成的。

[{1 abc default} {2 xyz default}]

我使用 gin 作为 http 服务器。如何使用 c.JSON 将此数组设置为 JSON 响应。有点像

[
{
id: 1,
name : 'abc'
status: 'default'
},
{
id: 2,
name : 'xyz'
status: 'default'
}
]

最佳答案

ok c.JSON(http.StatusOK, myArray) 成功了。但是我在响应中看不到 Id 字段。有什么理由吗?是因为 'int64' 数据类型吗?

关于arrays - 如何在 json 响应中设置数组 goLang-gin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39095502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com