-1
{
"meta": {
"type": "RESPONSE",
"application": "",
"data0": {
some data
},
"lv1": [
{
"status": "SUCCESS",
"response-type": "JSON",
"message": {},
"response": {
"more_data": "TRUE",
"no_result": "5",
"current_page": "1",
"data": [[
"1",
"2",
"3"]]
}
}
]
}
}
type response struct {
META struct {
LV []struct {
RESPONSE struct {
Data []struct {
array []struct {
val []string
}
} `json:"data"`
} `json:"response"`
} `json:"lv1"`
} `json:"meta"`
}
我怎樣才能在下面的值是多少?GO解析嵌套的JSON數組
"data": [[
"1",
"2",
"3"]]
我試過接口和結構。在接口類型[1 2 3]
中使用接口結果,我不確定如何獲取值。當使用結構,我試圖映射陣列的與錯誤消息數組時遇到了問題:
「不能解組陣列分成型結構的圍棋結構字段。數據{ 瓦爾斯[]串}」
您發佈的JSON在某處無效... – RayfenWindspear