Jason是一个Go语言用来处理JSON文档的开发包。Jason的强项是解析JSON而不是生成JSON。示例代码:root, err := jason.NewFromReader(res.Body)root.Get("name").String()root.Get("age").Number()root.Get("verified").Boolean()root.Get("education").Object()root.Get("friends").Array()//读取嵌套内容root.Get("person&q