gpt4 book ai didi

go - type reflect.Value 不支持索引

转载 作者:数据小太阳 更新时间:2023-10-29 03:03:08 25 4
gpt4 key购买 nike

我有一个通用类型数组 interface{},我想检查该数组是否在其 JSON 对象之一中包含特定值。

 history := reflect.ValueOf(historyInterface)
for i := 0; i < history.Len(); i++ {
// here I can get a map object
test := history.Index(i)
// then I tried to access the id property of the object
// but here it fails
fmt.Println("test", test["id"].(string))
}

下面是每次迭代的测试结果:

first iteration
map[id:5afbff19bf07c79c19ed9af9 date:Saturday, January 21, 2017 9:21 PM certitude:33]
second iteration
map[id:afbff198658487a3e3e376b date:Thursday, March 3, 2016 2:24 PM certitude:30]

invalid operation: test["id"] (type reflect.Valuedoes not support indexing)

最佳答案

如果 historyInterface 是通过将 JSON 解码为 interface{} 创建的,则 map 的类型为 map[string]interface{}。使用类型断言获取该类型的 map :

 history := reflect.ValueOf(historyInterface)
for i := 0; i < history.Len(); i++ {
test := history.Index(i).Interface().(map[string]interface{})
fmt.Println("test", test["id"].(string))
}

同样基于对数据源的假设,应用程序可以使用类型断言而不是反射。

 history := historyInterface.([]interface{})
for _, m := range history {
test := m.(map[string]interface{})
fmt.Println("test", test["id"].(string))
}

关于go - type reflect.Value 不支持索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50413633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com