我要复制 resp.Body 吗?

我正在学习 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?


慕娘9325324
浏览 164回答 1
1回答

森栏

由于客户端从网络流式传输响应正文,因此不可能两次读取正文。阅读对 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))
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go