【发布时间】:2025-12-14 02:45:01
【问题描述】:
我收到此警告
DEPRECATION WARNING: The following options in your Product.has_many :recommended_users declaration are deprecated: :conditions. Please use a scope block instead. For example, the following:
has_many :spam_comments, conditions: { spam: true }, class_name: 'Comment'
should be rewritten as the following:
has_many :spam_comments, -> { where spam: true }, class_name: 'Comment'
我尝试使用新的作用域块重写我的代码,但没有取得多大成功:
has_many :current_products, :class_name => "Product", :through => :associations, :source => :product, :conditions => ["associations.category = ?", 1]
谁能帮帮我?
【问题讨论】:
标签: ruby-on-rails ruby-on-rails-4