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 jetson nano
  • ¥15 :app:debugCompileClasspath'.
  • ¥15 windows c++内嵌qt出现数据转换问题。
  • ¥20 公众号如何实现点击超链接后自动发送文字
  • ¥15 用php隐藏类名和增加类名
  • ¥15 算法设计与分析课程的提问
  • ¥15 用MATLAB汇总拟合图
  • ¥15 智能除草机器人方案设计
  • ¥15 对接wps协作接口实现消息发送
  • ¥15 SQLite 出现“Database is locked” 如何解决?