5

我正在尝试用 ruby​​ 编写一个简单的网络抓取。它工作到第 29 个 url 然后我收到此错误消息:

C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:346:in `open_http': 500 Internal Server Er
ror (OpenURI::HTTPError)
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:775:in `buffer_open'
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:203:in `block in open_loop'
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:201:in `catch'
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:201:in `open_loop'
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:146:in `open_uri'
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:677:in `open'
        from C:/Ruby193/lib/ruby/1.9.1/open-uri.rb:33:in `open'
        from test.rb:24:in `block (2 levels) in <main>'
        from test.rb:18:in `each'
        from test.rb:18:in `block in <main>'
        from test.rb:14:in `each'
        from test.rb:14:in `<main>'

我的代码:

require 'rubygems'  
require 'nokogiri'  
require 'open-uri'  

aFile=File.new('data.txt', 'w')

ag = 0
  for i in 1..40 do
    agenzie = ag + 1

    #change url parameter 

    url = "http://www.infotrav.it/dettaglio.do?sort=*RICOVIAGGI*&codAgenzia=" + "#{ ag }"  
    doc = Nokogiri::HTML(open(url))
    aFile=File.open('data.txt', 'a')
    aFile.write(doc.at_css("table").text)
    aFile.close
  end

你有一些想法来解决它吗?谢谢!

作为

4

3 回答 3

4

代码有一个小错字。它应该是ag = ag + 1而不是agenzie = ag + 1。我假设在您将代码复制到 stackoverflow 时发生了,因为代码无法处理错字。

我能够在本地运行代码,并得到同样的错误。原来正在访问的 url (当 codAgenzia=30 时)在http://www.infotrav.it站点上不可用;它返回 HTTP 错误 500。

所以问题不在于您的代码,而在于远程服务器(http://www.infotrav.it

正如 slivu 在他的回答中提到的那样,您应该挽救错误并继续抓取。

于 2012-10-04T23:27:58.273 回答
4

在这里,让我为你清理它:

File.open('data.txt', 'w') do |aFile|
  (1..40).each do |ag|
    url = "http://www.infotrav.it/dettaglio.do?sort=*RICOVIAGGI*&codAgenzia=#{ag}"
    response = open(url) rescue nil
    next unless response
    doc = Nokogiri::HTML(response)
    aFile << doc.at_css("table").text
  end
end

笔记:

  • 使用块样式 File.open 意味着文件将在块退出时自行关闭
  • 使用 each 来迭代而不是 for 循环
于 2012-10-05T07:50:29.657 回答
3

如果您无法解决远程服务器上的问题,请尝试从错误中挽救并继续报废:

begin
  doc = Nokogiri::HTML(open(url))
  aFile=File.open('data.txt', 'a')
  aFile.write(doc.at_css("table").text)
  aFile.close
rescue => e
  puts e.message
end
于 2012-10-04T21:28:26.227 回答