首页 > 后端开发 > Golang > 正文

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

WBOY
发布: 2024-02-06 08:40:10
转载
857 人浏览过

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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!