~~~
api URL 得到一个 如: [name age time] ,查看类型为 []interface{}
我始终无法将这个值转换为字符串类型 因为我需要进行判断等系列
我记得以前单字符串的类型直接 .(string)即可解决转换问题 但是这个不可以
~~~
你是调用什么返回的这个结果? 可以把完整的请求 代码发出来看下嘛?
我猜测是 返回的 http resp body 。
这个时候的就
```
decoder := json.NewDecoder(resp.Body)
results := []string{}
err := decoder.Decode(&results)
if err !=nil {
fmt.Println("decode failed", err)
return
}
// 接下去就是数据的操作啦
```
#4
更多评论
```go
for _, v := range data {
if val, ok := v.(string); ok {
//
}
//
}
```
#1