首頁  >  文章  >  後端開發  >  Go中如何取得interface{}的值? (介面轉換:interface{}是Resp,不是mapinterface{})

Go中如何取得interface{}的值? (介面轉換:interface{}是Resp,不是mapinterface{})

WBOY
WBOY轉載
2024-02-06 08:40:10857瀏覽

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刪除