为了账号安全,请及时绑定邮箱和手机立即绑定

Golang中的严格json解析器

Golang中的严格json解析器

Go
牧羊人nacy 2021-05-12 17:14:31
在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
提交
取消
意见反馈 帮助中心 APP下载
官方微信