gpt4 book ai didi

ruby-on-rails - rails : Default sort order for a rails model?

转载 作者:行者123 更新时间:2023-12-03 04:05:48 25 4
gpt4 key购买 nike

我想在我的模型中指定默认排序顺序。

因此,当我执行 .where() 而不指定 .order() 时,它会使用默认排序。但如果我指定 .order(),它会覆盖默认值。

最佳答案

default_scope

这适用于 Rails 4+:

class Book < ActiveRecord::Base
default_scope { order(created_at: :desc) }
end

对于 Rails 2.3、3,您需要这个:

default_scope order('created_at DESC')

对于 Rails 2.x:

default_scope :order => 'created_at DESC'

其中 created_at 是您想要进行默认排序的字段。

注意:ASC 是用于升序的代码,DESC 是用于降序的代码( desc不是dsc!)。

范围

一旦您习惯了,您还可以使用范围:

class Book < ActiveRecord::Base
scope :confirmed, :conditions => { :confirmed => true }
scope :published, :conditions => { :published => true }
end

对于 Rails 2,您需要 named_scope

:published 范围为您提​​供 Book.published 而不是Book.find(:published => true)

自 Rails 3 起,您可以通过将这些方法与它们之间的句点连接起来将它们“链接”在一起,因此对于上述范围,您现在可以使用 Book.published.confirmed

使用此方法,直到需要实际结果时才会真正执行查询(惰性求值),因此 7 个作用域可以链接在一起,但只会产生 1 个实际数据库查询,以避免执行 7 个单独查询时出现性能问题。

您可以使用传入的参数,例如日期或 user_id(这些参数会在运行时更改,因此需要使用 lambda 进行“惰性求值”,如下所示:

scope :recent_books, lambda 
{ |since_when| where("created_at >= ?", since_when) }
# Note the `where` is making use of AREL syntax added in Rails 3.

最后,您可以禁用默认范围:

Book.with_exclusive_scope { find(:all) } 

或者更好:

Book.unscoped.all

这将禁用任何过滤器(条件)或排序(排序依据)。

请注意,第一个版本适用于 Rails2+,而第二个版本(无范围)仅适用于 Rails3+

<小时/>

所以...如果您在想,嗯,那么这些就像方法一样...,是的,这正是这些作用域!
它们就像 def self.method_name ...code... end 但与 ruby​​ 一样,它们是很好的小语法快捷方式(或“糖”),可以让您的事情变得更轻松!

事实上,它们是类级别的方法,因为它们对一组“所有”记录进行操作。

它们的格式正在发生变化,在 Rails 4 中,使用 #scope 而不传递可调用对象时会出现弃用警告。 例如,scope :red, where(color: 'red') 应该更改到 scope :red, -> { where(color: 'red') }.

顺便说一句,如果使用不当,default_scope 可能会被误用/滥用。
这主要是关于它何时用于诸如 where 限制(过滤)默认选择之类的操作(默认情况下是一个坏主意)而不仅仅是用于对结果进行排序。
对于 where 选择,只需使用常规命名范围即可。并在查询中添加该范围,例如Book.all.published 其中 published 是命名范围。

总之,示波器确实很棒,可以帮助您将事物插入模型中,以实现“胖模型瘦 Controller ”DRYer 方法。

关于ruby-on-rails - rails : Default sort order for a rails model?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3393687/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com