在Go中,我有一些来自第三方API的JSON,然后尝试解析它:b := []byte(`{"age":21,"married":true}`)var response_hash map[string]string_ = json.Unmarshal(b, &response_hash)但它失败(response_hash变为空),并且Unmarshal只能处理带引号的JSON:b := []byte(`{"age":"21","married":"true"}`)var response_hash map[string]string_ = json.Unmarshal(b, &response_hash)有什么方法可以从第三方API读取JSON的第一个版本?
1 回答
- 1 回答
- 0 关注
- 202 浏览
添加回答
举报
0/150
提交
取消