英文:
Marshaling []interface{} in Go
问题
这是将接口数组进行编组的正确方式吗?
英文:
type A struct {
Id uint32 `json:"id"`
}
type B struct {
A
Title string `json:"title"`
}
type C struct {
Id uint32 `json:"id"`
Name string `json:"name"`
Arrays []interface{} `json:"arrays"`
}
Is this the correct way to marshal an array of interfaces?
答案1
得分: 1
将数组放在双引号中的 JSON 表示为:"arrays"
英文:
Put arrays in double quotes json:"arrays"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论