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"`
}
这是编组接口数组的正确方法吗?
答案 0 :(得分:1)
将数组放在双引号json:“arrays”
中