在 python 中,您可以获取一个 json 对象并从中获取特定项,而无需声明结构体,保存到结构体然后像在 Go 中一样获取值。是否有包或更简单的方法可以在 Go 中存储来自 json 的特定值?
Python
res = res.json()
return res['results'][0]
去
type Quotes struct {
AskPrice string `json:"ask_price"`
}
quote := new(Quotes)
errJson := json.Unmarshal(content, "e)
if errJson != nil {
return "nil", fmt.Errorf("cannot read json body: %v", errJson)
}
交互式爱情
红颜莎娜
相关分类