问题描述
我有一个json字符串,如下所示:
j:=`{bvu62fu6dq:{
姓名:约翰,
年龄:23,
xyz:weu33s
.....
.....}
}`
我想提取 name $ c的值$ c>和
age
来自json字符串。我查看了golang站点给出的示例
但是我的问题是关于顶层json的关键是动态的。这意味着 bvu62fu6dq
是动态的。
类型信息结构{
UniqueID map [string] string
}
但不知道如何提取名称
和年龄
。我的代码位于
type Person struct {
名称字符串`json:name`
年龄int`json:age`
}
类型Info map [string] Person
然后,在解码完成后: 完整示例: I have a json string as follows: I want to extract the value of But my problem is the key in the json on top level is dynamic. That means But not sure how to extract I believe you want something like this: Then, after decoding this works: Full example: http://play.golang.org/p/FyH-cDp3Na 这篇关于Golang用DYNAMIC键解析一个json的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
<$ p $年龄)
$ c $> fmt.Printf(%s:%d \ n,info [bvu62fu6dq]。Name,info [bvu62fu6dq]。 c>
j := `{"bvu62fu6dq": {
"name": "john",
"age": 23,
"xyz": "weu33s"
.....
.....}
}`
name
and age
from above json string. I looked at this example given at golang site http://play.golang.org/p/YQgzP7KPp9bvu62fu6dq
is dynamic. I have created struct like this: type Info struct {
UniqueID map[string]string
}
name
and age
. My code is at http://play.golang.org/p/Vbdkd3XIKctype Person struct {
Name string `json:"name"`
Age int `json:"age"`
}
type Info map[string]Person
fmt.Printf("%s: %d\n", info["bvu62fu6dq"].Name, info["bvu62fu6dq"].Age)