douyu1656 2018-06-10 03:55
浏览 278
已采纳

我应该如何在golang中传递param?

I have the follow whole codes:

I hope that string convert map in golang, and use golang reflect.

The following code have simpled from my project.

package main

import (
    "encoding/json"
    "fmt"
    "reflect"
)

func main() {
    jsonStr := `{"name": "thinkerou", "age": 31, "balance": 3.14}`

    var a map[string]interface{}
    var value reflect.Value = reflect.ValueOf(&a)

    // call function and pass param
    f(jsonStr, value)

    // print result
    fmt.Println(value.Kind(), value.Interface())
}

func f(v string, value reflect.Value) {
    personMap := make(map[string]interface{})

    err := json.Unmarshal([]byte(v), &personMap)

    if err != nil {
        panic(err)
    }

    value = reflect.Indirect(value)
    value = reflect.MakeMap(value.Type())
    for k, v := range personMap {
        // set key/value
        value.SetMapIndex(reflect.ValueOf(k), reflect.ValueOf(v))
    }

    // print result
    fmt.Println(value.Kind(), value.Interface())
}

and run it and will get the result:

map map[age:31 balance:3.14 name:thinkerou]
ptr &map[]

I hope the follow result:

map map[age:31 balance:3.14 name:thinkerou]
map map[age:31 balance:3.14 name:thinkerou]

How should I pass reflect.Value param? thanks!

  • 写回答

1条回答 默认 最新

  • duanma8207 2018-06-10 04:03
    关注

    You should be able to get your map from the interface, using type assertion:

    a := i.(map[string]interface{})
    

    See "Convert Value type to Map in Golang?"

    I have modified your code here.
    Note that I don't try to mutate the f(value) argument, but I return it instead.

    func f(v string, value reflect.Value) reflect.Value {
      ...
      return value 
    }
    

    So the code becomes:

    value = f(jsonStr, value)
    fmt.Println(value.Kind(), value.Interface().(map[string]interface{}))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵