场景:
考虑以下是 JSON :
{
"Bangalore_City": "35_Temperature",
"NewYork_City": "31_Temperature",
"Copenhagen_City": "29_Temperature"
}
如果您注意到,数据的结构方式没有硬编码键提及City/Temperature它基本上只是值。
问题:我无法解析任何动态的 JSON。
问题:有人能找到这种 JSON 解析的解决方案吗?我试过go-simplejson,gabs & defaultencoding/json但没有运气。
注意: 以上 JSON 仅用于示例。并且有很多应用程序都在使用当前的 API,所以我不想改变数据的结构。我的意思是我不能更改为以下内容:
[{
"City_Name":"Bangalore",
"Temperature": "35"
},...]
然后我可以定义 struct
type TempData struct {
City_Name string
Temperature string
}
开心每一天1111
梵蒂冈之花
相关分类