在我的项目中,我有一个来自请求响应的字节片。
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
log.Println("StatusCode为" + strconv.Itoa(resp.StatusCode))
return
}
respByte, err := ioutil.ReadAll(resp.Body)
if err != nil {
log.Println("fail to read response data")
return
}
这是可行的,但如果我想获得io的响应体。读者,我该如何转换?我试过这个新的阅读器/打字机,但不成功。