让我首先告诉我,我最近在Go世界。
我想要做的是阅读我从JSON API获得的json(我无法控制)。一切正常,我也可以显示收到的ID和标签。但是field字段有点不同,因为它是一个动态数组。
我可以从api收到:
{
"id":"M7DHM98AD2-32E3223F",
"tags": [
{
"id":"9M23X2Z0",
"name":"History"
},
{
"id":"123123123",
"name":"Theory"
}
],
"fields": {
"title":"Title of the item",
"description":"Description of the item"
}
}
或者代替title
和description
,我只能收到description
,或者收到另一个随机对象,例如long_title
。返回的对象可能完全不同,并且可能是对象的无限可能性。但它始终返回带有键和字符串内容的对象,如示例所示。
到目前为止,这是我的代码:
type Item struct {
ID string `json:"id"`
Tags []Tag `json:"tags"`
//Fields []Field `json:"fields"`
}
// Tag data from the call
type Tag struct {
ID string `json:"id"`
Name string `json:"name"`
}
// AllEntries gets all entries from the session
func AllEntries() {
resp, _ := client.Get(APIURL)
body, _ := ioutil.ReadAll(resp.Body)
item := new(Item)
_ = json.Unmarshal(body, &item)
fmt.Println(i, "->", item.ID)
}
所以Item.Fields是动态的,没有办法预测键名是什么,因此,据我所知,没有办法为它创建一个结构。但同样,我是Go的新手,有人可以给我任何提示吗?感谢
答案 0 :(得分:6)
如果"fields"
中的数据始终是平面字典,那么您可以使用map[string]string
作为Fields
的类型。
对于任意数据,请将Fields
指定为RawMessage
类型,然后根据其内容对其进行解析。来自文档的示例:https://play.golang.org/p/IR1_O87SHv
如果这些字段太不可预测,那么你可以保持这个字段不变([]byte
),或者如果有总是常见的字段那么你可以解析那些并留下其余字段(但这会导致丢失其他领域的数据。)