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

我应该如何在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 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题