我正在学习 go 并且我有以下代码可以正常工作:resp, err := http.Get(url) // get the html ...doc, err := html.Parse(resp.Body) // parse the html page现在我想先打印出 html 然后进行解析:resp, err := http.Get(url) ...b, err := ioutil.ReadAll(resp.Body) // this line is added, not working now...doc, err := html.Parse(resp.Body)我猜原因是 resp.Body 是一个 reader,我不能调用 read 两次?知道如何正确执行此操作吗?复制resp.Body?
1 回答
森栏
TA贡献1810条经验 获得超5个赞
由于客户端从网络流式传输响应正文,因此不可能两次读取正文。
阅读对 a 的响应,[]byte就像您已经在做的那样。io.Reader使用bytes.NewReader为 HTML 解析器创建一个字节。
resp, err := http.Get(url)
...
b, err := ioutil.ReadAll(resp.Body)
doc, err := html.Parse(bytes.NewReader(b))
- 1 回答
- 0 关注
- 163 浏览
添加回答
举报
0/150
提交
取消