donglue1886 2017-03-26 21:45
浏览 50
已采纳

在函数中传递接口切片并将其解编组

Can i pass into function a slice of structs, converted to []interface{}, fill it and use after function end work?

Here is full example of the problem https://play.golang.org/p/iPijsawEEg

Short describe:

type DBResponse struct {
    Rows  int             `json:"rows"`
    Error string          `json:"error"`
    Value json.RawMessage `json:"value"`
}
type User struct {
    Id   int    `json:"id"`
    Name string `json:"name"`
}

func loadDBRows(p []interface{}) {
    var response DBResponse
    someDataFromDB := []byte("{\"rows\":1, \"error\": \"\", \"value\": {\"name\":\"John\", \"id\":2}}")
    json.Unmarshal(someDataFromDB, &response)
    json.Unmarshal(response.Value, &p[0])
    fmt.Println(p)//p[0] filled with map, not object
}

func main() {
    users := make([]User, 5)
    data := make([]interface{}, 5)
    for i := range users {
        data[i] = users[i]
    }
    loadDBRows(data)
}

This problem can be easily solved for single interface{}, u can test in at full example. Why i can't solve it for slice?

I want to do it without reflect! Is there any "true way" to write universal json parser to selected data struct without reflect and map[string]interface{}? Don't want complicated code and extra operations

Thank you for help!

  • 写回答

2条回答 默认 最新

  • dongou0524 2017-03-26 22:14
    关注

    Since p is a slice of interfaces, on this line json.Unmarshal(response.Value, &p[0]) you're passing a pointer to an interface{} not to a User and since json.Unmarshal allows interfaces as the destination to which to unmarshal the data, it doesn't look under the interface{} for another type and just decodes the json into a map.

    What you can do is to have the interface{} already be a pointer to a concrete type e.g. data[i] = &users[i] then you just pass the interface{} without & to json.Unmarshal.

    func loadDBRows(p []interface{}) {
        var response DBResponse
        someDataFromDB := []byte("{\"rows\":1, \"error\": \"\", \"value\": {\"name\":\"John\", \"id\":2}}")
        json.Unmarshal(someDataFromDB, &response)
        json.Unmarshal(response.Value, p[0]) // notice the missing &
        fmt.Println(p)
    }
    
    users := make([]User, 5)
    data := make([]interface{}, 5)
    for i := range users {
        data[i] = &users[i] // notice the added &
    }
    

    https://play.golang.org/p/GEbIq9febY

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题