Spec-Zone.ru › Ruby on Rails 7.1

модуль ActiveRecord::SpawnMethods

Публичные методы экземпляра

except(*skips) Показать исходный код
# File activerecord/lib/active_record/relation/spawn_methods.rb, line 75
def except(*skips)
  relation_with values.except(*skips)
end

Удаляет из запроса условие(я), указанное(ые) в skips.

Post.order('id asc').except(:order)                  # discards the order condition
Post.where('id > 10').order('id asc').except(:where) # discards the where condition but keeps the order
merge(other, *rest) Показать исходный код
# File activerecord/lib/active_record/relation/spawn_methods.rb, line 33
def merge(other, *rest)
  if other.is_a?(Array)
    records & other
  elsif other
    spawn.merge!(other, *rest)
  else
    raise ArgumentError, "invalid argument: #{other.inspect}."
  end
end

Объединяет условия из other, если other является ActiveRecord::Relation. Возвращает массив, представляющий пересечение результирующих записей с other, если other является массивом.

Post.where(published: true).joins(:comments).merge( Comment.where(spam: false) )
# Performs a single join query with both where conditions.

recent_posts = Post.order('created_at DESC').first(5)
Post.where(published: true).merge(recent_posts)
# Returns the intersection of all published posts with the 5 most recently created posts.
# (This is just an example. You'd probably want to do this with a single query!)

Блоки будут вычисляться merge:

Post.where(published: true).merge(-> { joins(:comments) })
# => Post.where(published: true).joins(:comments)

Это в основном предназначено для совместного использования общих условий между несколькими ассоциациями.

Для условий, которые существуют в обоих отношениях, условия из other будут иметь приоритет. Чтобы найти пересечение двух отношений, используйте QueryMethods#and.

only(*onlies) Показать исходный код
# File activerecord/lib/active_record/relation/spawn_methods.rb, line 83
def only(*onlies)
  relation_with values.slice(*onlies)
end

Удаляет любое условие из запроса, кроме указанного(ых) в onlies.

Post.order('id asc').only(:where)         # discards the order condition
Post.order('id asc').only(:where, :order) # uses the specified order

© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API