首頁 > 後端開發 > 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學習者快速成長!