解码嵌套 JSON 和处理类型断言问题
检索嵌套 JSON 数据时,必须正确处理类型断言以避免运行时错误。此类错误之一是“无效操作:类型 interface {} 不支持索引。”
当您尝试对 interface{} 值进行索引(就好像它是映射或切片一样)时,通常会发生此错误,如以下示例:
<code class="go">var d interface{} json.NewDecoder(response.Body).Decode(&d) test := d["data"].(map[string]interface{})["type"]</code>
要解决此问题,您需要执行额外的类型断言以将 interface{} 值转换为预期类型。在这种情况下,您首先需要将interface{}转换为map[string]interface{},然后访问“data”字段并将其转换为另一个map[string]interface{},最后访问“type”字段。
<code class="go">test := d.(map[string]interface{})["data"].(map[string]interface{})["type"]</code>
或者,您可以直接将 d 声明为 map[string]interface{} 类型,从而无需初始类型断言:
<code class="go">var d map[string]interface{} json.NewDecoder(response.Body).Decode(&d) test := d["data"].(map[string]interface{})["type"]</code>
如果您经常执行类似的类型断言,请考虑使用像 github.com/icza/dyno 这样的库来简化过程。
以上是解码嵌套 JSON 时如何避免'无效操作:类型接口 {} 不支持索引”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!