新手想做个api的爬虫,请求api以后ioutil.ReadAll(resp.Body)输出的数据如何能取到其中指定字段的值
![image.png](https://static.studygolang.com/180918/84e70805a9ff061b98aae0c6755c2929.png)
下面是获取到的数据
![image.png](https://static.studygolang.com/180918/47450acceb2372e967d4ea85a742b0dd.png)
下面是获取到的数据转为string
![image.png](https://static.studygolang.com/180918/7696ee1680e6ca1fbd3de4690a45f4a0.png)
不知道该怎么去获取status 或者equips。
更多评论
json.Unmarshal([]byte(body), userInfo )之类,把返回值,转成对应的实体类。用到了"encoding/json" 这个库
![TIM图片20180919102142.png](https://static.studygolang.com/180919/0a260fe8311f3e389661d5a690084650.png)![TIM图片20180919102117.png](https://static.studygolang.com/180919/7b186bb6d8bfa2b80041cc9d108bd5b2.png)
#2