您可以提供解析HTML的示例吗?


68

您如何使用各种语言和库来解析HTML?


回答时:

个别评论将链接到有关如何使用正则表达式解析HTML的问题的答案,以显示正确的处理方式。

为了保持一致性,我要求示例为hrefin锚标记解析HTML文件。为了便于搜索此问题,请您遵循以下格式

语言:[语言名称]

图书馆:[图书馆名称]

[example code]

请使库成为库文档的链接。如果您要提供除提取链接以外的示例,还请包括:

目的:[解析做什么]


为每个示例重复该HTML构建器代码是毫无意义的
dfa

以及为什么要使用无意义/无用的使用指令来构建Perl代码?(警告和严格要求)
dfa

4
自给自足,可行的例子更好。所有的Perl代码都应包括严格和警告,它们并非毫无意义。它们是Modern Perl的一部分。如果您认为代码“毫无意义”和“无用”,我会不寒而栗。
Chas。欧文斯(Owens)

在我的代码中,我总是使用警告和严格;在背景下,他们是没有意义的。这些示例中的大多数都不是“独立的”(例如jquery,ruby和其他答案),那么为什么要麻烦基于perl的解决方案呢?
dfa

因为可以,并且JavaScript示例完全包含在其环境中。我没有更改nokogiri示例,因为我无法在计算机上安装nokogiri。我不想更改我不理解的代码。但是我会改变它;一方面,它看起来并没有解决该示例。至于对学习的人使用严格的,建模不安全的代码是犯罪。他们需要获得的所有加固。
Chas。欧文斯(Owens)

Answers:


29

语言:JavaScript
库:jQuery

$.each($('a[href]'), function(){
    console.debug(this.href);
});

(使用firebug console.debug输出...)

并加载任何html页面:

$.get('http://stackoverflow.com/', function(page){
     $(page).find('a[href]').each(function(){
        console.debug(this.href);
    });
});

为此使用了另一个每个函数,我认为在链接方法时它更干净。


好吧,如果您这样看的话。:)但是,使用javascript / jquery解析HTML感觉很自然,它非常适合此类内容。
沃德·布鲁克

使用浏览器作为解析器是最终的解析器。给定浏览器中的DOM文档树。
Chas。Owens

25

语言:C#
库:HtmlAgilityPack

class Program
{
    static void Main(string[] args)
    {
        var web = new HtmlWeb();
        var doc = web.Load("http://www.stackoverflow.com");

        var nodes = doc.DocumentNode.SelectNodes("//a[@href]");

        foreach (var node in nodes)
        {
            Console.WriteLine(node.InnerHtml);
        }
    }
}

22

语言:Python
库:BeautifulSoup

from BeautifulSoup import BeautifulSoup

html = "<html><body>"
for link in ("foo", "bar", "baz"):
    html += '<a href="http://%s.com">%s</a>' % (link, link)
html += "</body></html>"

soup = BeautifulSoup(html)
links = soup.findAll('a', href=True) # find <a> with a defined href attribute
print links  

输出:

[<a href="http://foo.com">foo</a>,
 <a href="http://bar.com">bar</a>,
 <a href="http://baz.com">baz</a>]

也可能:

for link in links:
    print link['href']

输出:

http://foo.com
http://bar.com
http://baz.com

很好,但是BeautifulSoup是否提供一种查看标签以获取属性的方法?去看文档
Chas。Owens

1
第一个示例中的输出只是匹配链接的文本表示,它们实际上是对象,您可以对它们进行各种有趣的操作。
Paolo Bergantino,

1
是的,我刚刚阅读了文档,您只是击败了我来修复代码。我确实添加了try / catch,以防止在href不在时不会爆炸。显然,“链接中的'href'”无效。
Chas。Owens

请务必使用beautifulsoup <3.1。看到这里更多信息:crummy.com/software/BeautifulSoup/3.1-problems.html
Peter Krumins 09年

20

语言:Perl
库:pQuery

use strict;
use warnings;
use pQuery;

my $html = join '',
    "<html><body>",
    (map { qq(<a href="http://$_.com">$_</a>) } qw/foo bar baz/),
    "</body></html>";

pQuery( $html )->find( 'a' )->each(
    sub {  
        my $at = $_->getAttribute( 'href' ); 
        print "$at\n" if defined $at;
    }
);

1
太精彩了。从未听说过pQuery,但是它看起来很酷。

您可以像在jQuery中一样搜索“ a [@href]”或“ a [href]”吗?这样可以简化代码,并且可以肯定会更快。
Ward Werbrouck


@ code-is-art:不幸的是还没有...引用docs“选择器语法仍然非常有限。(仅单个标签,ID和类)”引用作者。检出测试,因为pQuery确实具有文档中未提供的功能,例如。说“具有<blad>内容的<td>的数量-”,pQuery('td:contains(blah)')-> size;
draegtun

15

语言:shell
库:lynx(嗯,这不是库,但是在shell中,每个程序都是同类库)

lynx -dump -listonly http://news.google.com/

+1表示尝试,+ 1表示有效的解决方案,-1表示解决方案无法推广到其他任务:net +1
Chas。Owens

7
好吧,任务定义得很好-它必须从“ a”标签中提取链接。:)

是的,但是它被定义为展示如何解析的示例,我可能很容易要求您打印具有类“ phonenum”的<td>标签的所有内容。
Chas。Owens

3
我同意这对一般性问题无济于事,但是特定问题很可能是一个流行的问题,因此,对于我来说,将其作为解决一般问题特定领域的一种方式对我来说似乎是合理的。
Tanktalus

14

语言:Ruby
库:Hpricot

#!/usr/bin/ruby

require 'hpricot'

html = '<html><body>'
['foo', 'bar', 'baz'].each {|link| html += "<a href=\"http://#{link}.com\">#{link}</a>" }
html += '</body></html>'

doc = Hpricot(html)
doc.search('//a').each {|elm| puts elm.attributes['href'] }

12

语言:Python
库:HTMLParser

#!/usr/bin/python

from HTMLParser import HTMLParser

class FindLinks(HTMLParser):
    def __init__(self):
        HTMLParser.__init__(self)

    def handle_starttag(self, tag, attrs):
        at = dict(attrs)
        if tag == 'a' and 'href' in at:
            print at['href']


find = FindLinks()

html = "<html><body>"
for link in ("foo", "bar", "baz"):
    html += '<a href="http://%s.com">%s</a>' % (link, link)
html += "</body></html>"

find.feed(html)

11

语言:Perl
库:HTML :: Parser

#!/usr/bin/perl

use strict;
use warnings;

use HTML::Parser;

my $find_links = HTML::Parser->new(
    start_h => [
        sub {
            my ($tag, $attr) = @_;
            if ($tag eq 'a' and exists $attr->{href}) {
                print "$attr->{href}\n";
            }
        }, 
        "tag, attr"
    ]
);

my $html = join '',
    "<html><body>",
    (map { qq(<a href="http://$_.com">$_</a>) } qw/foo bar baz/),
    "</body></html>";

$find_links->parse($html);

使用LWP ::简单下载此页面(如我在Perl的例子做如下)表明您发现的不具有HREF的(但有名字),所以我们只是想检查是否有一个href打印前。
Tanktalus

9

语言Perl
库:HTML :: LinkExtor

Perl的优点是您具有用于特定任务的模块。喜欢链接提取。

整个程序:

#!/usr/bin/perl -w
use strict;

use HTML::LinkExtor;
use LWP::Simple;

my $url     = 'http://www.google.com/';
my $content = get( $url );

my $p       = HTML::LinkExtor->new( \&process_link, $url, );
$p->parse( $content );

exit;

sub process_link {
    my ( $tag, %attr ) = @_;

    return unless $tag eq 'a';
    return unless defined $attr{ 'href' };

    print "- $attr{'href'}\n";
    return;
}

说明:

  • 使用strict-打开“严格”模式-简化潜在的调试,与示例不完全相关
  • 使用HTML :: LinkExtor-加载有趣的模块
  • 使用LWP :: Simple-一种获取测试用的html的简单方法
  • 我的$ url =' http://www.google.com/'-我们将从哪个页面提取URL
  • 我的$ content = get($ url)-获取页面html
  • 我的$ p = HTML :: LinkExtor-> new(\&process_link,$ url)-创建LinkExtor对象,为其提供对将用作每个URL回调的函数的引用,以及将$ url用作相对URL的BASEURL的引用
  • $ p-> parse($ content)-我想很明显
  • 退出-程序结束
  • 子process_link-函数process_link的开始
  • 我的($ tag,%attr)-获取参数,它们是标签名称及其属性
  • 除非$ tag eq'a'否则返回-如果标签不是<a>,则跳过处理
  • 除非伪造的$ attr {'href'},否则返回-如果<a>标签没有href属性,则跳过处理
  • 打印“-$ attr {'href'} \ n”; -很明显,我猜:)
  • 返回; -完成功能

就这样。


很好,但是我认为您缺少问题的要点,那里的示例使代码相似,而不是因为我想要链接。用更笼统的角度思考。目的是为人们提供使用解析器而不是正则表达式的工具。
Chas。Owens

5
我可能错过了一些东西,但是我读了问题描述:“为了保持一致,我要求示例为锚标记中的href解析HTML文件。” 如果您要求解析<td>标签的示例-我可能会使用HTML :: TableExtract-基本上-专用工具优于(我认为)通用工具。

很好,找到所有类为“ to_understand_intent”的span标签,这些标签位于类为“ learn”的div标签内。专门的工具很棒,但是仅仅是:专门的。您将有一天需要了解通用工具。这是关于通用工具的问题,而不是使用这些工具的专用库的问题。
Chas。Owens

4
对于这个新请求-HTML :: Parser当然会更好。但是仅仅说“使用HTML :: Parser”是完全错误的。一个人应该为给定任务使用适当的工具。对于提取href,我会说使用HTML :: Parser是过分的。用于提取<td> s-也是如此。询问“给我一般的解析方式...”是错误的,因为它假定存在一种在所有情况下都是完美的工具(语言)。我个人至少以6种不同的方式来解析HTML,具体取决于我需要做什么。

再次查看任务。任务不是获取HTMl页面中的链接,而是以获取HTML页面中的链接为例,演示您喜欢的解析器如何工作。选择它是因为这是一项简单的任务,涉及找到正确的标签并查看其中的数据。之所以选择它,是因为这是一项常见的任务。因为这是Perl的常见任务,但Perl已为您自动完成了任务,但这并不意味着这个问题就要求您提供自动答案。
Chas。Owens

8

语言:Ruby
库:Nokogiri

#!/usr/bin/env ruby
require 'nokogiri'
require 'open-uri'

document = Nokogiri::HTML(open("http://google.com"))
document.css("html head title").first.content
=> "Google"
document.xpath("//title").first.content
=> "Google"

8

语言:Common Lisp
库:Closure HtmlClosure XmlCL-WHO

(显示为使用DOM API,未使用XPATH或STP API)

(defvar *html*
  (who:with-html-output-to-string (stream)
    (:html
     (:body (loop
               for site in (list "foo" "bar" "baz")
               do (who:htm (:a :href (format nil "http://~A.com/" site))))))))

(defvar *dom*
  (chtml:parse *html* (cxml-dom:make-dom-builder)))

(loop
   for tag across (dom:get-elements-by-tag-name *dom* "a")
   collect (dom:get-attribute tag "href"))
=> 
("http://foo.com/" "http://bar.com/" "http://baz.com/")

或dom:get-attribute是否正确处理未设置href的标签?
Chas。欧文斯2009年

2
取决于正确性的定义。在所示的示例中,将为没有“ href”属性的“ a”标签收集空字符串。如果循环改写为(环路跨(DOM标签:获得元素,通过标签名称DOM “A”)时(串/ =(DOM:获取属性标记的“href”)“”)收集(DOM: get-attribute标记“ href”)),则仅收集非空的“ href”。
dmitry_vk 2009年

实际上,这不是(string / =(dom:get-attribute标签“ href”)“”),而是(dom:has-attribute标签“ href”)
dmitry_vk 2009年

如果没有循环宏,您将如何做?
davorb

6

语言:Clojure
库: Enlive(用于Clojure的基于选择器的(àla CSS)模板和转换系统)


选择器表达式:

(def test-select
     (html/select (html/html-resource (java.io.StringReader. test-html)) [:a]))

现在我们可以在REPL上执行以下操作(我在中添加了换行符test-select):

user> test-select
({:tag :a, :attrs {:href "http://foo.com/"}, :content ["foo"]}
 {:tag :a, :attrs {:href "http://bar.com/"}, :content ["bar"]}
 {:tag :a, :attrs {:href "http://baz.com/"}, :content ["baz"]})
user> (map #(get-in % [:attrs :href]) test-select)
("http://foo.com/" "http://bar.com/" "http://baz.com/")

您需要执行以下操作才能尝试:

前言:

(require '[net.cgrand.enlive-html :as html])

测试HTML:

(def test-html
     (apply str (concat ["<html><body>"]
                        (for [link ["foo" "bar" "baz"]]
                          (str "<a href=\"http://" link ".com/\">" link "</a>"))
                        ["</body></html>"])))

不知道我是否称Enlive为“解析器”,但是我肯定会用它代替一个,所以-这是一个示例。
米哈尔Marczyk

5

语言:Perl
库:XML :: Twig

#!/usr/bin/perl
use strict;
use warnings;
use Encode ':all';

use LWP::Simple;
use XML::Twig;

#my $url = 'http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser';
my $url = 'http://www.google.com';
my $content = get($url);
die "Couldn't fetch!" unless defined $content;

my $twig = XML::Twig->new();
$twig->parse_html($content);

my @hrefs = map {
    $_->att('href');
} $twig->get_xpath('//*[@href]');

print "$_\n" for @hrefs;

警告:此类页面可能会出现宽字符错误(将url更改为注释掉的页面会得到此错误),但是上述HTML :: Parser解决方案却没有这个问题。


很好,我一直都在使用XML :: Twig,但从未意识到有一个parse_html方法。
Chas。Owens


5

语言:Java
库:XOMTagSoup

在此示例中,我故意包含了格式错误和不一致的XML。

import java.io.IOException;

import nu.xom.Builder;
import nu.xom.Document;
import nu.xom.Element;
import nu.xom.Node;
import nu.xom.Nodes;
import nu.xom.ParsingException;
import nu.xom.ValidityException;

import org.ccil.cowan.tagsoup.Parser;
import org.xml.sax.SAXException;

public class HtmlTest {
    public static void main(final String[] args) throws SAXException, ValidityException, ParsingException, IOException {
        final Parser parser = new Parser();
        parser.setFeature(Parser.namespacesFeature, false);
        final Builder builder = new Builder(parser);
        final Document document = builder.build("<html><body><ul><li><a href=\"http://google.com\">google</li><li><a HREF=\"http://reddit.org\" target=\"_blank\">reddit</a></li><li><a name=\"nothing\">nothing</a><li></ul></body></html>", null);
        final Element root = document.getRootElement();
        final Nodes links = root.query("//a[@href]");
        for (int linkNumber = 0; linkNumber < links.size(); ++linkNumber) {
            final Node node = links.get(linkNumber);
            System.out.println(((Element) node).getAttributeValue("href"));
        }
    }
}

默认情况下,TagSoup将引用XHTML的XML名称空间添加到文档中。在这个示例中,我选择隐藏它。使用默认行为将要求调用root.query包括如下名称空间:

root.query("//xhtml:a[@href]", new nu.xom.XPathContext("xhtml", root.getNamespaceURI())

我相信任何一个都可以正常工作。TagSoup可以解析您可以扔给它的任何东西。
laz

4

语言:C#
库:System.XML(标准.NET)

using System.Collections.Generic;
using System.Xml;

public static void Main(string[] args)
{
    List<string> matches = new List<string>();

    XmlDocument xd = new XmlDocument();
    xd.LoadXml("<html>...</html>");

    FindHrefs(xd.FirstChild, matches);
}

static void FindHrefs(XmlNode xn, List<string> matches)
{
    if (xn.Attributes != null && xn.Attributes["href"] != null)
        matches.Add(xn.Attributes["href"].InnerXml);

    foreach (XmlNode child in xn.ChildNodes)
        FindHrefs(child, matches);
}

如果HTML无效的xml(例如,未封闭的img标签),这将有效吗?
Chas。Owens

4

语言:PHP
库:SimpleXML(和DOM)

<?php
$page = new DOMDocument();
$page->strictErrorChecking = false;
$page->loadHTMLFile('http://stackoverflow.com/questions/773340');
$xml = simplexml_import_dom($page);

$links = $xml->xpath('//a[@href]');
foreach($links as $link)
    echo $link['href']."\n";

4

语言:JavaScript
库:DOM

var links = document.links;
for(var i in links){
    var href = links[i].href;
    if(href != null) console.debug(href);
}

(使用firebug console.debug输出...)


4

语言:球拍

库:(planet ashinn / html-parser:1)(planet clements / sxml2:1)

(require net/url
         (planet ashinn/html-parser:1)
         (planet clements/sxml2:1))

(define the-url (string->url "http://stackoverflow.com/"))
(define doc (call/input-url the-url get-pure-port html->sxml))
(define links ((sxpath "//a/@href/text()") doc))

上面的示例使用了新软件包系统中的软件包:html-parsingsxml

(require net/url
         html-parsing
         sxml)

(define the-url (string->url "http://stackoverflow.com/"))
(define doc (call/input-url the-url get-pure-port html->xexp))
(define links ((sxpath "//a/@href/text()") doc))

注意:从命令行使用“ raco”安装所需的软件包,方法是:

raco pkg install html-parsing

和:

raco pkg install sxml

3

语言:Python
库:lxml.html

import lxml.html

html = "<html><body>"
for link in ("foo", "bar", "baz"):
    html += '<a href="http://%s.com">%s</a>' % (link, link)
html += "</body></html>"

tree = lxml.html.document_fromstring(html)
for element, attribute, link, pos in tree.iterlinks():
    if attribute == "href":
        print link

lxml还有一个用于遍历DOM的CSS选择器类,它可以使它的使用与使用JQuery非常相似:

for a in tree.cssselect('a[href]'):
    print a.get('href')

嗯,尝试运行此代码时,出现“ ImportError:没有名为html的模块”,除了python-lxml之外,我还需要其他东西吗?
Chas。Owens

啊,我的版本1.3.6,并且配备了2.0和更高版本
查斯。Owens

确实。如果您愿意,我还可以提供一个使用lxml.etree来完成工作的示例?lxml.html更能容忍损坏的HTML。
亚当

3

语言:Objective-C
库:libxml2 + Matt Gallagher的libxml2包装器+ Ben Copsey的ASIHTTPRequest

ASIHTTPRequest *request = [ASIHTTPRequest alloc] initWithURL:[NSURL URLWithString:@"http://stackoverflow.com/questions/773340"];
[request start];
NSError *error = [request error];
if (!error) {
    NSData *response = [request responseData];
    NSLog(@"Data: %@", [[self query:@"//a[@href]" withResponse:response] description]);
    [request release];
}
else 
    @throw [NSException exceptionWithName:@"kMyHTTPRequestFailed" reason:@"Request failed!" userInfo:nil];

...

- (id) query:(NSString *)xpathQuery WithResponse:(NSData *)resp {
    NSArray *nodes = PerformHTMLXPathQuery(resp, xpathQuery);
    if (nodes != nil)
        return nodes;
    return nil;
}

3

语言:Perl
库:HTML :: TreeBuilder

use strict;
use HTML::TreeBuilder;
use LWP::Simple;

my $content = get 'http://www.stackoverflow.com';
my $document = HTML::TreeBuilder->new->parse($content)->eof;

for my $a ($document->find('a')) {
    print $a->attr('href'), "\n" if $a->attr('href');
}

这也是不正确的,您必须调用$ document-> eof;。如果使用$ document-> parse($ html); 并在未设置href时显示空行。
Chas。欧文斯(Owens)

恢复为我的原始代码;-> eof()在此示例中无用;在这个例子中,检查href是否存在也没有意义
dfa

您是否有不想使用new_from_content的原因?
Chas。欧文斯(Owens)

1

语言:Python
库:HTQL

import htql; 

page="<a href=a.html>1</a><a href=b.html>2</a><a href=c.html>3</a>";
query="<a>:href,tx";

for url, text in htql.HTQL(page, query): 
    print url, text;

简单直观。


1

语言:Ruby
库:Nokogiri

#!/usr/bin/env ruby

require "nokogiri"
require "open-uri"

doc = Nokogiri::HTML(open('http://www.example.com'))
hrefs = doc.search('a').map{ |n| n['href'] }

puts hrefs

哪个输出:

/
/domains/
/numbers/
/protocols/
/about/
/go/rfc2606
/about/
/about/presentations/
/about/performance/
/reports/
/domains/
/domains/root/
/domains/int/
/domains/arpa/
/domains/idn-tables/
/protocols/
/numbers/
/abuse/
http://www.icann.org/
mailto:iana@iana.org?subject=General%20website%20feedback

这是对上面的一个小调整,导致输出可用于报告。我只返回href列表中的第一个和最后一个元素:

#!/usr/bin/env ruby

require "nokogiri"
require "open-uri"

doc = Nokogiri::HTML(open('http://nokogiri.org'))
hrefs = doc.search('a[href]').map{ |n| n['href'] }

puts hrefs
  .each_with_index                     # add an array index
  .minmax{ |a,b| a.last <=> b.last }   # find the first and last element
  .map{ |h,i| '%3d %s' % [1 + i, h ] } # format the output

  1 http://github.com/tenderlove/nokogiri
100 http://yokolet.blogspot.com

1

语言:Java
库:jsoup

import java.io.IOException;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import org.xml.sax.SAXException;

public class HtmlTest {
    public static void main(final String[] args) throws SAXException, ValidityException, ParsingException, IOException {
        final Document document = Jsoup.parse("<html><body><ul><li><a href=\"http://google.com\">google</li><li><a HREF=\"http://reddit.org\" target=\"_blank\">reddit</a></li><li><a name=\"nothing\">nothing</a><li></ul></body></html>");
        final Elements links = document.select("a[href]");
        for (final Element element : links) {
            System.out.println(element.attr("href"));
        }
    }
}

0

语言:PHP库:DOM

<?php
$doc = new DOMDocument();
$doc->strictErrorChecking = false;
$doc->loadHTMLFile('http://stackoverflow.com/questions/773340');
$xpath = new DOMXpath($doc);

$links = $xpath->query('//a[@href]');
for ($i = 0; $i < $links->length; $i++)
    echo $links->item($i)->getAttribute('href'), "\n";

有时在将@符号放在前面$doc->loadHTMLFile以抑制无效的html解析警告很有用


几乎与我的PHP版本相同(stackoverflow.com/questions/773340/…)您不需要getAttribute调用
Ward Werbrouck 2010年

0

使用phantomjs,将此文件另存为extract-links.js:

var page = new WebPage(),
    url = 'http://www.udacity.com';

page.open(url, function (status) {
    if (status !== 'success') {
        console.log('Unable to access network');
    } else {
        var results = page.evaluate(function() {
            var list = document.querySelectorAll('a'), links = [], i;
            for (i = 0; i < list.length; i++) {
                links.push(list[i].href);
            }
            return links;
        });
        console.log(results.join('\n'));
    }
    phantom.exit();
});

跑:

$ ../path/to/bin/phantomjs extract-links.js

0

语言:Coldfusion 9.0.1+

图书馆: jSoup

<cfscript>
function parseURL(required string url){
var res = [];
var javaLoader = createObject("javaloader.JavaLoader").init([expandPath("./jsoup-1.7.3.jar")]);
var jSoupClass = javaLoader.create("org.jsoup.Jsoup");
//var dom = jSoupClass.parse(html); // if you already have some html to parse.
var dom = jSoupClass.connect( arguments.url ).get();
var links = dom.select("a");
for(var a=1;a LT arrayLen(links);a++){
    var s={};s.href= links[a].attr('href'); s.text= links[a].text(); 
    if(s.href contains "http://" || s.href contains "https://") arrayAppend(res,s); 
}
return res; 
}   

//writeoutput(writedump(parseURL(url)));
</cfscript>
<cfdump var="#parseURL("http://stackoverflow.com/questions/773340/can-you-provide-examples-of-parsing-html")#">

返回结构数组,每个结构包含一个HREF和TEXT对象。


0

语言:JavaScript / Node.js

图书馆:RequestCheerio

var request = require('request');
var cheerio = require('cheerio');

var url = "https://news.ycombinator.com/";
request(url, function (error, response, html) {
    if (!error && response.statusCode == 200) {
        var $ = cheerio.load(html);
        var anchorTags = $('a');

        anchorTags.each(function(i,element){
            console.log(element["attribs"]["href"]);
        });
    }
});

请求库下载html文档,而Cheerio则允许您使用jquery css选择器来定位html文档。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.