我的 Rails 控制器代码中有以下几行
url_parsed = URI.parse(url)
response = Net::HTTP.get_response(url_parsed)
当我通过www.google.com
asurl
时,它给了
undefined method `request_uri' for #<URI::Generic:0x00000002e07908 URL:www.google.com>
在第二行,即使我没有在request_uri
任何地方调用该方法。
在这种情况下,我希望它显示我漂亮的错误页面,而不是这个丑陋的错误。我该怎么做?