1 回答

TA貢獻(xiàn)1934條經(jīng)驗(yàn) 獲得超2個(gè)贊
由于密鑰未知,因此您必須求助于動態(tài)數(shù)據(jù)結(jié)構(gòu)。
定義單個(gè)元素,如:
type Element struct {
Size int `json:"size"`
Fee float64 `json:"fee"`
Time int `json:"time"`
Height int `json:"height"`
Startingpriority float64 `json:"startingpriority"`
Currentpriority float64 `json:"currentpriority"`
Depends []interface{} `json:"depends"`
}
然后將你的 json 解析成map[string]Element這樣:
result := make(map[string]Element)
json.Unmarshal(jsonBytes, &result)
- 1 回答
- 0 關(guān)注
- 172 瀏覽
添加回答
舉報(bào)