- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在其他线程上寻找答案,但觉得这些回复与我的情况无关(如果情况并非如此,我深表歉意)。也就是说,我正在尝试在 irb 中运行一个简单的 ruby 脚本
> require 'mechanize'
>
> agent = Mechanize.new
>
> page = agent.get('https://www.amazon.com/')
> Mechanize::ResponseCodeError: 503 => Net::HTTPServiceUnavailable for
> https://www.amazon.com/ -- unhandled response
最佳答案
The Web server (running the Web site) is currently unable to handle the HTTP request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. Some servers in this state may also simply refuse the socket connection, in which case a different error may be generated because the socket creation timed out.
503
方法。你的输出清楚地表明
Net::HTTPServiceUnavailable
关于RUBY -Mechanize::ResponseCodeError: 503 => Net::HTTPServiceUnavailable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43836615/
我正在尝试抓取网站的所有结果页面,它可以工作,但有时脚本会停止并显示此错误: 502 => Net::HTTPBadGateway for https://website.com/id/12/ --
submit_form = agent.get("http://sample.com/NewTask.aspx").form("aspnetForm") do |f| f["ctl00$Con
我尝试在其他线程上寻找答案,但觉得这些回复与我的情况无关(如果情况并非如此,我深表歉意)。也就是说,我正在尝试在 irb 中运行一个简单的 ruby 脚本 > require 'mecha
试图刮 图片来自 https://en.wikipedia.org/网站使用 Mechanize gem 。我收到 Mechanize::ResponseCodeError (404 => Net::
我负责使用 Cucumber 测试非 Rails 网络应用程序。我已经启动并运行了基本测试,I.E.我可以做类似的事情 Then /^the page should have a header$/ d
尝试使用 Mechanize 浏览 KBB.com。我创建了一个新代理 agent = Mechanize.new 工作正常。 page = agent.get('http://www.kbb.com
我是一名优秀的程序员,十分优秀!