通过标签(tag)和反射,将上文示例的newUser()返回的结果转化成下面的一个map。其中包含struct的域的展开,定制化struct的方法。 map[string]interface{}{"name":"user","no_dive":StructNoDive{NoDive:1},// dive struct field"url":"https://github.com/liangyaopei","star":1,// customized method"time"...
func structToMap(s interface{}) map[string]interface{} { result := make(map[string]interface{}) // 使用反射获取结构体字段信息 v := reflect.ValueOf(s) t := reflect.TypeOf(s) for i := 0; i < t.NumField(); i++ { // 将结构体字段名和值存储到Map中 result[t.Field(i).Name] ...
1.struct -> map 1.1 version-1 指定struct中tag-map // version-1, struct -> map typeUserstruct{ Namestring`map:"name,omitempty"` Ageint`map:"age,omitempty"` Profile UserProfile`map:"profile,dive"`// struct dive NoDive StructDive`map:"no_dive, omitempty"`// no dive } typeUserProfile...
2. 合并 map 到 struct 接下来我们看另一个场景:我们有一个 map,需要将其内容合并到一个已有的 struct 中。这种需求在动态配置加载时特别常见。 funcmapToStruct(){ varm =make(map[string]interface{})m["name"] ="Tom"m["age"] =23m["email"] ="12...
func MapToJsonDemo2(){ b, _ := json.Marshal(map[string]int{"test":1,"try":2}) fmt.Println(string(b)) } map转struct 需要安装一个第三方库 在命令行中运行: go get github.com/goinggo/mapstructure 例子: func MapToStructDemo(){ ...
Id int64 Username string Password string Logintime time.Time } func Struct2Map(obj interface{}) map[string]interface{} { t := reflect.TypeOf(obj) v := reflect.ValueOf(obj) var data = make(map[string]interface{}) for i := 0; i < t.NumField(); i++ { ...
map转struct有两种方式 1.是通过第三方包github.com/mitchellh/mapstructure 2.通过map转json,再通过json转struct 第三方包 mapstructure 下载依赖,通过第三方依赖进行转换 go gethttp://github.com/goinggo/mapstructure func TestMapToStructByMod(t *testing.T) { ...
varm=make(map[string]interface{}) mergo.Map(&m,student) fmt.Printf("m: %v\n",m) // m: map[age:23 name:Tom] } // map 转 struct funcmapToStruct() { varm=make(map[string]interface{}) m["name"]="Tom" m["age"]=23
一、map, struct 互转 1.map 转 struct map 转struct 有两种方式 1.是通过第三方包 github.com/mitchellh/mapstructure 2.通过 map 转json,再通过 json 转struct 第三方包 mapstructure 下载依赖,通过第三方依赖进行转换 go get github.com/goinggo/mapstructure func TestMapToStructByMod(t *testing.T) { ...
1.map 转 struct map转struct有两种方式 1.是通过第三方包github.com/mitchellh/mapstructure 2.通过map转json,再通过json转struct 第三方包 mapstructure 下载依赖,通过第三方依赖进行转换 go get github.com/goinggo/mapstructure funcTestMapToStructByMod(t*testing.T){ ...