接口转换错误:无效映射
尝试将接口转换为映射时,在 JSON 解析过程中发生错误,导致出现以下消息“接口转换:interface {}是[]interface {},而不是map[string]interface {}."
说明
错误指出数据类型之间不匹配。在提供的代码片段中,以下行从有机结果列表中提取结果:
result := fmt.Sprintf("%v", response["organic_results"].(map[string]interface{})["title"])
假设response["organic_results"]是一个地图,其值应转换为map[string ]interface{} 来访问特定的标题值。然而,response["organic_results"] 的实际数据类型是接口切片 ([]interface{}),而不是映射。
解决方案
到解决错误,代码应该相应地更正:
for _, item := range response["organic_results"].([]interface{}) { fmt.Sprintf("%v", item.(map[string]interface{})["title"]) }
这里,循环迭代中的每个项目[]interface{} 切片,每个项目都被转换为 map[string]interface{} 以提取标题值。
以上是将接口转换为映射时,为什么会出现“接口转换:接口 {} 是 []接口 {},而不是映射 [字符串]接口 {}”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!