http://play.golang.org/p/f6ilWnWTjm我正在尝试解码以下字符串,但只获得空值。如何在 Go 中解码嵌套的 JSON 结构?我想将以下内容转换为地图数据结构。package mainimport ( "encoding/json" "fmt")func main() { jStr := `{ "AAA": { "assdfdff": ["asdf"], "fdsfa": ["1231", "123"] }}` type Container struct { Key string `json:"AAA"` } var cont Container json.Unmarshal([]byte(jStr), &cont) fmt.Println(cont)}
2 回答
- 2 回答
- 0 关注
- 176 浏览
添加回答
举报
0/150
提交
取消