Go语言JSON 处理
JSON字符串解析到结构体代码示例type User struct { Name string FansCount int64}// 如果反序列化的时候指定明确的结构体和变量类型func TestJsonUnmarshal(t *testing.T) { const jsonStream = ` {"name":"ethancai", "fansCount": 9223372036854775807} `