0

我将以下内容存储在 rake 任务中。基本上,如果来自 url 的响应代码不是 200,我需要将“已发布”属性从 1 更新为 0。当我运行此命令时,我得到:undefined method 'request_uri' for #<URI::Generic:0x00000102136408 URL:url>

desc "Problem products"
task :update_broken_links => :environment do
  require 'net/http'

  Product.find(:all, :conditions =>["published = ? AND feed_id = ?", '1', 820]).each do |product|
    url = product.url 
    uri = URI('url')
    response = Net::HTTP.get_response(uri)
    x = response.code.to_i    

    if x != 200
      published = '0'
    else
      published = product.published
    end


    product.update_attribute(:publsihed, publsihed) 

  end
end
4

1 回答 1

0

uri = URI('url')需要将其更改为uri = URI(url). 您当前的代码正在尝试将字符串'uri'转换为 URI,而不是使用uri变量的内容。

product.update_attribute(:publsihed, publsihed)一旦你到达那里,你也会在接近尾声时遇到问题。你有一个错字:'publsihed' 而不是 'published'。

于 2012-06-12T21:26:48.247 回答