ruby-on-rails – 如何在Rails 3中取消关联记录

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在Rails 3中取消关联记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在使用范围在rails中正常工作时遇到了一些麻烦.

我的模特:

  1. class User < ActiveRecord::Base
  2. default_scope :conditions => 'users.deleted_at IS NULL'
  3.  
  4.  
  5. class Feed < ActiveRecord::Base
  6. belongs_to :user,:foreign_key => :author_id

当我打电话给以下人时:

  1. Feeds = Feed.includes(:user)

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

  1. Feeds = Feed.unscoped.includes(:user)

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

解决方法

您可以使用.unscoped以块形式完成此操作,如文档 here所示:
  1. User.unscoped do
  2. @Feeds = Feed.includes(:user).all
  3. end

请注意,默认范围是否适用取决于在实际执行查询时您是否在块内.这就是为什么上面使用.all,强制查询执行的原因.

因此,虽然上述工作,但不会 – 查询在.unscoped块之外执行,默认范围将适用:

  1. User.unscoped do
  2. @Feeds = Feed.includes(:user)
  3. end
  4. @Feeds #included Users will have default scope

猜你在找的Ruby相关文章