-1
解組JSON我有一個JSON:如何在golang
{"code":200,
"msg":"success",
"data":{"url":"https:\/\/mp.weixin.qq.com\/cgi-bin\/showqrcode?ticket=gQHQ7jwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyX3pqS0pMZlA4a1AxbEJkemhvMVoAAgQ5TGNYAwQsAQAA"}}
和我定義一個結構:
type Result struct {
code int
msg string `json:"msg"`
data map[string]interface{} `json:"data"`
}
此代碼:
var res Result
json.Unmarshal(body, &res)
fmt.Println(res)
輸出是:{0 map[]}
我想得到url
在data
,如何得到它?