启动 Rails 4,Model.scoped
现在已弃用。
DEPRECATION WARNING: Model.scoped is deprecated. Please use Model.all instead.
Model.scoped
但是, and有区别Model.all
,即scoped.scoped
返回一个范围,同时all.all
运行查询。
在 Rails 3 上:
> Model.scoped.scoped.is_a?(ActiveRecord::Relation)
=> true
在 Rails 4 上:
> Model.all.all.is_a?(ActiveRecord::Relation)
DEPRECATION WARNING: Relation#all is deprecated. If you want to eager-load a relation, you can call #load (e.g. `Post.where(published: true).load`). If you want to get an array of records from a relation, you can call #to_a (e.g. `Post.where(published: true).to_a`).
=> false
scoped
当有条件做某事或什么都不做时,库/关注点中有一些用例会返回,如下所示:
module AmongConcern
extend ActiveSupport::Concern
module ClassMethods
def among(ids)
return scoped if ids.blank?
where(id: ids)
end
end
end
如果您将其更改scoped
为all
,您将面临随机问题,具体取决于在among
作用域链中使用的位置。例如,Model.where(some: value).among(ids)
将运行查询而不是返回范围。
我想要的是一个幂等方法ActiveRecord::Relation
,它只返回一个范围。
我应该在这里做什么?