Go中的Marshaling [] interface {}

时间:2017-05-05 16:36:58

标签: json 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"`
}

这是编组接口数组的正确方法吗?

1 个答案:

答案 0 :(得分:1)

将数组放在双引号json:“arrays”