[Go] json.Unmarshal()解析后存储的结构体定义

按照文档要求

bool,for JSON booleans

 float64,for JSON numbers

 string,for JSON strings

 []interface{},for JSON arrays

 map[string]interface{},for JSON objects

 nil for JSON null

 

对于json中的booleans 会解析结构体字段类型为 bool类型

对于json中的数字 会解析结构体字段类型为 float64类型

对于json中的数组 会解析结构体字段类型为  []interface{}类型

对于json中的对象 会解析结构体字段类型为   map[string]interface{}类型

对于json中的null 会解析结构体字段类型为  nil类型

例如下面这个:

type Response struct {
    Code float64     `json:"code"`
    Msg  string      `json:msg`
    Data map[string]interface{} `json:data`
}

 

相关文章

什么是Go的接口? 接口可以说是一种类型,可以粗略的理解为他...
1、Golang指针 在介绍Golang指针隐式间接引用前,先简单说下...
1、概述 1.1 Protocol buffers定义 Protocol buffe...
判断文件是否存在,需要用到"os"包中的两个函数: os.Stat(...
1、编译环境 OS :Loongnix-Server Linux release 8.3 CPU指...
1、概述 Golang是一种强类型语言,虽然在代码中经常看到i:=1...