如果发送请求没有发送,则使用Ruby net http请求循环方法

时间:2013-10-18 09:57:09

标签: ruby net-http

我有这样的课程(删除了一些代码):

class Terms

  def get_connection(path, proxy_addr, proxy_port)
    @http = Net::HTTP.new('*', 443, proxy_addr, proxy_port)
    @http.use_ssl = true
    @http.verify_mode = OpenSSL::SSL::VERIFY_NONE
    @http.read_timeout = 500
    header = {
      'User-Agent' => 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0',
      'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
      'Accept-Language' => 'ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3',  
      'Connection' => 'keep-alive'
    }
    @resp_get, @data_get = @http.get(path, header)
    @get_body_text = @resp_get.body
    return @resp_get
  end
  def first(path, type_id)
    ***
    @resp_post2 = @http.post(path, data, headers)
    return @resp_post2
  end
end

然后我在main中调用它:

v = Terms.get_connection
v.first

但主要的麻烦是我的网站可能已关闭,我可能会收到错误,无法访问@ resp_post2 = @ http.post(路径,数据,标题)。我的问题是如何循环这个帖子请求,并检查,如果有什么不好,再次尝试发送此帖子请求。也许使用try catch,也许是,但是如何编写这段代码?如何查看当前页面和连接存在?

1 个答案:

答案 0 :(得分:2)

我认为你可以用第一种方法开始救援

def first(path, type_id)
  begin
   @resp_post2 = @http.post(path, data, headers)
   return @resp_post2
  rescue
    retry #it will retry it once more
  end
end