根據這個問題和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{})的詳細內容。更多資訊請關注PHP中文網其他相關文章!