我对 Ruby 相当陌生,但正在通过刮刀摸索。我正在使用机械化,到目前为止它看起来相当不错。虽然我现在有点难以抓住一堆链接的 href 属性。
我需要获取 href 属性,以便我可以打开每个页面并抓取更多信息。
这可能吗?
下面是一个示例。
all_results.search("table.mcsResultsTable tr").each do |tablerow|
installer_link = tablerow.search("td:first-child a").href
puts installer_link + "n"
这里有一个示例来帮助您,关于如何提取 href 属性:
require 'nokogiri'
doc = Nokogiri::HTML.parse <<-eot
<a name="html" href = "http://foo">HTML Tutorial</a><br>
<a name="css" href = "http://fooz">CSS Tutorial</a><br>
<a name="xml" href = "http://fiz">XML Tutorial</a><br>
<a href="/js/">JavaScript Tutorial</a>
eot
doc.search("//a").class # => Nokogiri::XML::NodeSet
doc.search("//a").each {|nd| puts nd['href'] }
doc.search("//a").map(&:class)
# => [Nokogiri::XML::Element, Nokogiri::XML::Element, Nokogiri::XML::Element,
# Nokogiri::XML::Element]
输出:
http://foo
http://fooz>CSS Tutorial</a><br>
<a name=
/js/
基本上doc.search("//a")
会给你节点集,它只不过是Nokogiri::XML::Node
的集合。然后可以使用该方法Nokogiri::XML::Node#[]
获取任何特定节点的属性值。Nokogiri 将属性/值对保存为哈希。看下面 :
require 'nokogiri'
doc = Nokogiri::HTML.parse <<-eot
<a target="_blank" class="tryitbtn" href="tryit.asp?filename=try_methods">Try it yourself »</a>
eot
doc.at('a').keys
# => ["target", "class", "href"]
doc.at('a').values
# => ["_blank", "tryitbtn", "tryit.asp?filename=try_methods"]
doc.at('a')['target'] # => "_blank"
doc.at('a')['class'] # => "tryitbtn"