我有一个JSON对象类似于这一个:
原文链接:https://www.f2er.com/go/187836.html{ "name": "Cain","parents": { "mother" : "Eve","father" : "Adam" } }
现在我想解析“name”和“mother”到这个结构体:
struct { Name String Mother String `json:"???"` }
我想使用json:… struct标签指定JSON字段名称,但是我不知道要使用什么作为标签,因为它不是我感兴趣的顶级对象。我在encoding/json
找不到这个package docs也不在流行的博客JSON and Go.我也测试了母亲,父母/母亲和parents.mother。