@@ -31,6 +31,10 @@ func NewDocumentFromNode(root *html.Node) *Document {
31
31
// NewDocument is a Document constructor that takes a string URL as argument.
32
32
// It loads the specified document, parses it, and stores the root Document
33
33
// node, ready to be manipulated.
34
+ //
35
+ // Deprecated: Use the net/http standard library package to make the request
36
+ // and validate the response before calling goquery.NewDocumentFromReader
37
+ // with the response's body.
34
38
func NewDocument (url string ) (* Document , error ) {
35
39
// Load the URL
36
40
res , e := http .Get (url )
@@ -40,10 +44,10 @@ func NewDocument(url string) (*Document, error) {
40
44
return NewDocumentFromResponse (res )
41
45
}
42
46
43
- // NewDocumentFromReader returns a Document from a generic reader .
47
+ // NewDocumentFromReader returns a Document from an io.Reader .
44
48
// It returns an error as second value if the reader's data cannot be parsed
45
- // as html. It does * not* check if the reader is also an io.Closer, so the
46
- // provided reader is never closed by this call, it is the responsibility
49
+ // as html. It does not check if the reader is also an io.Closer, the
50
+ // provided reader is never closed by this call. It is the responsibility
47
51
// of the caller to close it if required.
48
52
func NewDocumentFromReader (r io.Reader ) (* Document , error ) {
49
53
root , e := html .Parse (r )
@@ -56,6 +60,8 @@ func NewDocumentFromReader(r io.Reader) (*Document, error) {
56
60
// NewDocumentFromResponse is another Document constructor that takes an http response as argument.
57
61
// It loads the specified response's document, parses it, and stores the root Document
58
62
// node, ready to be manipulated. The response's body is closed on return.
63
+ //
64
+ // Deprecated: Use goquery.NewDocumentFromReader with the response's body.
59
65
func NewDocumentFromResponse (res * http.Response ) (* Document , error ) {
60
66
if res == nil {
61
67
return nil , errors .New ("Response is nil" )
0 commit comments