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] ...
第二种是使用反射,使用反射的效率比较高,代码在 我的Github仓库github.com/liangyaopei/struct_to_map 假设有下面的一个结构体 funcnewUser()User{name:="user"MyGithub:=GithubPage{URL:"https://github.com/liangyaopei",Star:1,}NoDive:=StructNoDive{NoDive:1}dateStr:="2020-07-21 12:00:00"da...
// 方法1:使用go中标准库里的json编码成[]byte,然后再解码到map里 //data, _ := json.Marshal(&User)//m := make(map[string]any) //json.Unmarshal(data, &m)//Struct2map方法2:通过反射将struct转换成mapfuncStruct2map(obj any) (datamap[string]any, err error) { // 通过反射将结构体转换成...
一、通过struct转json,json转成map func StructToMapViaJson() { m := make(map[string]interface{}) t := time.Now() person := Persion{ Id: 98439, Name: "zhaondifnei", Address: "大沙地", Email: "dashdisnin@126.com", School: "广州第十五中学", City: "zhongguoguanzhou", Company: "sn...
需求:有一个切片,其元素是不固定类型的结构体,如何转换为元素为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) { ...
这里我们可以看到,通过反射拿到v使用v.Elem()方法可以拿到对应指针进行操作赋值 Field() typeMyDatastruct{Aintbfloat32}funcmain(){myData:=MyData{A:1,b:1.1,}myDataV:=reflect.ValueOf(&myData).Elem()fmt.Println("字段a:",myDataV.Field(0))fmt.Println("字段b:",myDataV.Field(1))fmt.Println(...
map转struct有两种方式 1.是通过第三方包github.com/mitchellh/mapstructure 2.通过map转json,再通过json转struct 第三方包 mapstructure 下载依赖,通过第三方依赖进行转换 go gethttp://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){ ...
首先定义struct,用一个map来管理struct 代码语言:javascript 复制 //这个是注册好的structvarregisterFunc=map[string]interface{}{"UserController":&UserController{},}type UserController struct{}func(u*UserController)GetName(param map[string]string)*ResData{ret:=ResData{}ret.Code=10000ret.Msg="succ"if...