我正在嘗試從 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中文網其他相關文章!