JSON常用于在网络间传递数据,为了接收数据我们总要是根据JSON定义对应语言的数据模型。这里哈喽JSON在线工具可以为您生成Golang, Java的数据模型定义。
只需要将JSON数据输入到https://www.hellokit.com/json中,然后选择【更多】=> 【生成Go模型代码】即可。
选择生成Go模型代码
生成后的代码,直接复制即可
本例中用到的具体的数据如下所示。
{
"userNane": "张三",
"age": 13,
"class": "4年级三班",
"score": 100
}
type AutoGenerated struct {
UserNane string `json:"userNane"`
Age int `json:"age"`
Class string `json:"class"`
Score int `json:"score"`
}