json解析库go-simplejson使用

#安装
go get github.com/bitly/go-simplejson

#使用
import "github.com/bitly/go-simplejson"

#访问json地址返回
res, err := http.PostForm(url, postData)
body, err := ioutil.ReadAll(res.Body)

json, err := simplejson.NewJson(body)
if err != nil {

}

fmt.Printf("%#v", json)
fmt.Print(json.Get("msg").String())

因为有些json结果为inerface类型,需要转换:http://my.oschina.net/kmwzjs/blog/673157

参考:http://www.tiege.me/?p=400

你可能感兴趣的:(json,Go,解析库)