1. 合并 struct 到 map 有时候,我们需要将一个 struct 转换成 map,比如在处理 JSON 数据或者数据库操作时。Mergo 能够帮助我们轻松实现这一点。来看下面这个示例: packagemain import("fmt""github.com/imdario/mergo") typeStudentstruct{NamestringAgeintemailstrin...
通过标签(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] ...
funcReflectMethod(objinterface{})map[string]interface{} { t := reflect.TypeOf(obj) v := reflect.ValueOf(obj)vardata =make(map[string]interface{})fori :=0; i < t.NumField(); i++ { data[strings.ToLower(t.Field(i).Name)] = v.Field(i).Interface() }returndata } 使用第三方库 ...
1.map 转 struct map转struct有两种方式 1.是通过第三方包github.com/mitchellh/mapstructure 2.通过map转json,再通过json转struct 第三方包 mapstructure 下载依赖,通过第三方依赖进行转换 go gethttp://github.com/goinggo/mapstructure func TestMapToStructByMod(t *testing.T) { ...
StructToJsonDemo() } AI代码助手复制代码 输出: 二、json和map互转 (1)json转map例子: funcJsonToMapDemo(){ jsonStr :=` { "name": "jqw", "age": 18 } `varmapResultmap[string]interface{} err := json.Unmarshal([]byte(jsonStr), &mapResult)iferr !=nil{ ...
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(){ ...
需求:有一个切片,其元素是不固定类型的结构体,如何转换为元素为map类型的切片。 以下例子是通过反射reflect的方法来完成这个转换过程。 packagemainimport("fmt""reflect")typeStudentstruct{Namestring`json:"name"`Ageuint`json:"age"`}typeTeacherstruct{Namestring`json:"name"`Genderuint`json:"gender"`}// ...
一、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) { ...