首頁  >  文章  >  後端開發  >  我應該如何在golang中使用類型mapinterface {}

我應該如何在golang中使用類型mapinterface {}

王林
王林轉載
2024-02-05 23:06:121119瀏覽

我应该如何在golang中使用类型mapinterface {}

問題內容

我正在嘗試從 api 檢索資料。當我從api取得資料時:

result, _ := s.getcases() // get cases via api
fmt.println(reflect.typeof(result.records[0]["cases"]))

它顯示結果的類型。 records[0]["cases"] 是map[string]interface {}

但是,顯然我不能直接用這個當地圖。自:

fmt.println(reflect.typeof(result.records[0]["cases"]["id"]))

這將導致編譯器錯誤:

invalid operation: cannot index result.Records[0]["Cases"] (map index
expression of type interface{})

我可以知道如何在 golang 中使用這種類型嗎?


正確答案


該值的類型為interface{},並且根據反射的輸出,該介面中有一個map [string]interface{} 值。因此,您必須使用類型斷言來取得儲存在介面中的實際值:

fmt.Println(reflect.TypeOf(result.Records[0]["Cases"].(map[string]interface{})["Id"]))

以上是我應該如何在golang中使用類型mapinterface {}的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:stackoverflow.com。如有侵權,請聯絡admin@php.cn刪除