首页  >  文章  >  后端开发  >  Go中如何获取interface{}的值? (接口转换:interface{}是Resp,不是mapinterface{})

Go中如何获取interface{}的值? (接口转换:interface{}是Resp,不是mapinterface{})

WBOY
WBOY转载
2024-02-06 08:40:10858浏览

Go中如何获取interface{}的值? (接口转换:interface{}是Resp,不是mapinterface{})

问题内容

根据这个问题和go代码扫描queryrow到go中现有的map[string]interface{},我试图获取data["id"]的键和值

func login() func(c *lmhttp.context, code int, data interface{}) (int, interface{}) {
    return func(c *lmhttp.context, code int, data interface{}) (int, interface{}) {
    map_data := data.(map[string]interface{})
    fmt.print(map_data, map_data["id"])
  }
}

但我总是遇到如下错误,非常感谢您的建议。

interface conversion: interface {} is loginresp, not map[string]interface {}

我还粘贴了我的 response 代码,如下所示:

func (c *Context) Response(data interface{}) {
    c.result(http.StatusOK, data)
}

正确答案


最后,我通过下面的代码获取值,使用marshal获取json数据,然后mapunmarshal它,

json_str, jsonErr := json.Marshal(data)
if json_str != nil {
    fmt.Printf("%v", jsonErr)
}
m := make(map[string]interface{})
err := json.Unmarshal([]byte(json_str), &m)
if err != nil {
    fmt.Println(err)
    fmt.Println("This is ID", m["id"])
}
        

以上是Go中如何获取interface{}的值? (接口转换:interface{}是Resp,不是mapinterface{})的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:stackoverflow.com。如有侵权,请联系admin@php.cn删除