登录
json类型
已收录文章:1篇
三天内
三天内
一周内
一月内
三月内
最新
最热
Golang
·
Go教程
| 1年前 |
转换
·
json类型
·
golang
golang 实现json类型不确定时的转换
将json转为结构体时,经常会遇到无法确定某个字段类型的情况。在Go中可以使用interface 任意类型来解决。 // convert json to struct // type uncertain package main import ( "fmt" "encoding/json" ) type Host struct { I
395
收藏