我正在尝试从 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中文网其他相关文章!