0

想看看我做错了什么。这里。

我需要在父页面上打印链接,即使它们是针对另一个域的。然后出去。

require 'anemone'
url = ARGV[0]
Anemone.crawl(url, :depth_limit => 1) do |anemone|
    anemone.on_every_page do |page|
        page.links.each do |link|
            puts link
        end
     end
end

我做错了什么?

编辑:什么都不输出。

4

1 回答 1

0

这对我有用

 require 'anemone'
    require 'optparse'
    file = ARGV[0]
    File.open(file).each do |url|
      url = URI.parse(URI.encode(url.strip))
      Anemone.crawl(url, :discard_page_bodies => true) do |anemone|
            anemone.on_every_page do |page|
                    links = page.doc.xpath("//a/@href")
                    if (links != nil)
                            links.each do |link|
                                    puts link.to_s
                            end
                    end
            end

      end
    end
于 2013-03-28T20:06:00.770 回答