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

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数据,然后map和unmarshal它,

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{})的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2485571.html

(0)
上一篇 2025年3月4日 21:47:51
下一篇 2025年2月18日 04:31:25

AD推荐 黄金广告位招租... 更多推荐

相关推荐

发表回复

登录后才能评论