我有一个与此对象相似的JSON对象:
{
"name": "Cain",
"parents": {
"mother" : "Eve",
"father" : "Adam"
}
}
现在,我想将“ name”和“ mother”解析为该结构:
struct {
Name String
Mother String `json:"???"`
}
我要与指定JSON字段名称json:...结构的标签,但我不知道作为标签使用什么,因为这不是我感兴趣的顶部对象。我没有发现任何有关此内容的encoding/json包文档,也没有在流行博客文章JSON和Go。我还测试mother,parents/mother和parents.mother。
相关分类