包:
import (
"github.com/bitly/go-simplejson"
)
用法:
第一步,得到json的内容
contents, _ := ioutil.ReadAll(res.Body)
js, js_err := simplejson.NewJson(contents)
第二步,根据json的格式,选择使用array或者map储存数据
var nodes = make(map[string]interface{})
nodes, _ = js.Map()
第三步,将nodes当作map处理即可,如果map的value仍是一个json机构,回到第二步。
for key,_ := range nodes {
...
}
golang json里的struct变量首字母需要大写的,如果给你的json是小写咋办?在type后面跟着别名就可以了,格式是 json:“字段名” 。
参考链接:
https://blog.csdn.net/iluckyning/article/details/44353249
http://xiaorui.cc/2016/03/06/golang%E8%A7%A3%E6%9E%90%E5%88%9B%E5%BB%BA%E5%A4%8D%E6%9D%82%E5%B5%8C%E5%A5%97%E7%9A%84json%E6%95%B0%E6%8D%AE/
https://gowalker.org/github.com/bitly/go-simplejson
https://blog.csdn.net/chenghuan1990/article/details/75423325
https://www.jianshu.com/p/cf8356ad78d5
https://www.jianshu.com/p/17d0ba1b1520