如何在Rails 3中取消关联记录

时间:2013-01-21 19:29:08

标签: ruby-on-rails ruby-on-rails-3

我在使用范围内正确使用范围方面遇到了一些麻烦。

我的模特:

class User < ActiveRecord::Base
  default_scope :conditions => 'users.deleted_at IS NULL'


class Feed < ActiveRecord::Base
  belongs_to :user, :foreign_key => :author_id

当我致电以下时间时:

feeds = Feed.includes(:user)

我想跳过default_scope用户。所以我试过了:

feeds = Feed.unscoped.includes(:user)

但这并不是要从用户那里删除范围。有关如何使其工作的任何建议?谢谢

1 个答案:

答案 0 :(得分:14)

您可以使用块状表单.unscoped完成此操作,如文档here所示:

User.unscoped do
  @feeds = Feed.includes(:user).all
end

请注意,默认范围是否适用取决于您在查询实际执行时是否在块中。这就是为什么上面使用.all,迫使查询执行。

因此,虽然上述方法有效,但不会 - 查询在.unscoped块之外执行,默认范围将适用:

User.unscoped do
  @feeds = Feed.includes(:user)
end
@feeds #included Users will have default scope