Я пытался загрузить ответ в документ goquery, но, похоже, он не работает (хотя он не выдает ошибок).
Ответ, который я пытаюсь загрузить, получен:
https://www.bbcgoodfood.com/search_api_ajax/search/recipes?sort=created&order=desc&page=4
и хотя он не выдает никаких ошибок, когда я звоню fmt.Println(goquery.OuterHtml(doc.Contents()))
, я получаю вывод:
<html><head></head><body></body></html>
Тем временем, если я не пытаюсь загрузить его вgoquery document и вместо этого звоните
s, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(s))
Я получаю:
<!doctype html>
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8 no-touch" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9 no-touch" lang="en"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js gt-ie-8 no-touch" lang="en"> <![endif]-->
<!--[if !IE]><!-->
<html class="no-js no-touch" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Search | BBC Good Food</title>
<!--[if IE]><![endif]-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="prev" href="https://www.bbcgoodfood.com/search/recipes?page=3&sort=created&order=desc" />
<link rel="next" href="https://www.bbcgoodfood.com/search/recipes?page=5&sort=created&order=desc" />
<meta name="robots" content="noindex" />
<style>
.async-hide {
opacity: 0 !important
}
... etc
Основная логика того, что я делаю, такова:
package main
import (
"fmt"
"net/http"
"github.com/PuerkitoBio/goquery"
"io/ioutil"
)
func main() {
baseUrl := "https://www.bbcgoodfood.com/search_api_ajax/search/recipes?sort=created&order=desc&page="
i := 4
// Make a request
req, _ := http.NewRequest(http.MethodGet, fmt.Sprintf("%s%d", baseUrl, i), nil)
// Create a new HTTP client and execute the request
client := &http.Client{}
resp, _ := client.Do(req)
// Print out response
s, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(s))
// Load into goquery doc
doc, _ := goquery.NewDocumentFromReader(resp.Body)
fmt.Println(goquery.OuterHtml(doc.Contents()))
}
полный ответ можно найти здесь . Есть ли какая-то конкретная причина, по которой это не загружается?