【发布时间】:2016-10-18 10:19:22
【问题描述】:
当我使用它时一切都很好:
html = open("http://"+self.url).read
但是当我添加一个用户代理时:
html = open("http://"+self.url, "User-Agent" => "Ruby", 'read_timeout' => 10 ).read
我明白了:
NoMethodError: undefined method `strip' for 10:Fixnum
from /Users/a_user/.rbenv/versions/2.2.3/lib/ruby/2.2.0/net/http/header.rb:17:in `block in initialize_http_header'
这里有什么问题?
【问题讨论】:
标签: ruby-on-rails ruby open-uri