在Rails 3.1 RC6中,给定

class Animal < ActiveRecord::Base
  default_scope where(legs: 4)
end

以下内容无法正常工作:
class Man < Animal
  default_scope unscoped.where(legs: 2)
end

产生的SQL语句如下所示:
SELECT * FROM animals WHERE legs = 4 AND legs = 2

如何完全覆盖父类的默认范围?

我还尝试了以下方法,但均无用:
default_scope{ unscoped.where legs: 2 }
default_scope with_exclusive_scope{ legs: 2 }

最佳答案

我研究了Rails的源代码,并提出了一个在Rails 3.1下工作的解决方案(经过activerecord 3.1.0.rc6测试):

class Animal < ActiveRecord::Base
  default_scope where(legs: 4)
end

class Man < Animal
  self.default_scopes = []
  default_scope where(legs: 2)
end

关于ActiveRecord STI : How can I break out of the parent class' default scope,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7239193/

10-10 11:38