我正在尝试从golang代码中的API解析JSON。
与true
选项参数一起传递时,它提供了不同的附加信息以及false
的不同输出。
我已经在以下golang播放链接中介绍了这一点:
https://play.golang.org/p/-JffO4AS01N
我需要解析变量mtJson
的值。
使用Json to Go(https://mholt.github.io/json-to-go/)进行转换,以获取有关为此创建结构类型的帮助。但是它为json示例提供了以下结构类型:
{
"result": {
"99c4d91acc2486955c98015fbbdf06239b983c9d93d5069c39d040702af88738": {
"size": 845,
"fee": 0.000144,
"time": 1547444481,
"height": 1183405,
"startingpriority": 89509.20245398773,
"currentpriority": 89509.20245398773,
"depends": []
},
"73f582cf419f8b1cd6a87f81e0e9a4e783add27c2be083361e8eb4a3bac0134e": {
"size": 1635,
"fee": 0.000312,
"time": 1547444435,
"height": 1183405,
"startingpriority": 341863.3540372671,
"currentpriority": 341863.3540372671,
"depends": []
}
},
"error": null,
"id": "curltest"
}
type AutoGenerated struct {
Result struct {
Nine9C4D91Acc2486955C98015Fbbdf06239B983C9D93D5069C39D040702Af88738 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:"99c4d91acc2486955c98015fbbdf06239b983c9d93d5069c39d040702af88738"`
Seven3F582Cf419F8B1Cd6A87F81E0E9A4E783Add27C2Be083361E8Eb4A3Bac0134E 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:"73f582cf419f8b1cd6a87f81e0e9a4e783add27c2be083361e8eb4a3bac0134e"`
} `json:"result"`
Error interface{} `json:"error"`
ID string `json:"id"`
}
这似乎不正确。
字符串哈希键的值始终是不确定的,因此不能仅将其设置为struct。
我对如何解析JSON感到困惑,以便最终获得如下所示的值:
fmt.Println(mt.Result.("99c4d91acc2486955c98015fbbdf06239b983c9d93d5069c39d040702af88738").Size)
fmt.Println(mt.Result.("99c4d91acc2486955c98015fbbdf06239b983c9d93d5069c39d040702af88738").Fee)
请帮助
我在以下golang播放链接中介绍了该内容: https://play.golang.org/p/-JffO4AS01N
我在以下golang播放链接中介绍了该内容: https://play.golang.org/p/-JffO4AS01N
预期: fmt.Println(mt.Result。(“ 99c4d91acc2486955c98015fbbdf06239b983c9d93d5069c39d040702af88738”)。大小) 845
fmt.Println(mt.Result。(“ 99c4d91acc2486955c98015fbbdf06239b983c9d93d5069c39d040702af88738”)。费用) 0.000144
实际结果:{{0 0 0 0 0 0 0 []}}
答案 0 :(得分:4)
由于密钥未知,因此必须诉诸动态数据结构。
定义单个元素,例如:
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)