gpt4 book ai didi

ruby-on-rails-3 - Rails 3 - 默认范围

转载 作者:行者123 更新时间:2023-12-03 00:26:39 26 4
gpt4 key购买 nike

我想按受欢迎程度而不是按创建日期对索引页面上的文章标签进行排序,即其中文章数量最多的标签从最高到最低。我的模型如下?

class Tag < ActiveRecord::Base

attr_accessible :name
validates :name, :uniqueness => true

# order by creation
default_scope :order => 'created_at DESC'

has_many :taggings, :dependent => :destroy
has_many :articles, :through => :taggings
end

最佳答案

我建议使用 counter cache column存储taggings_count(新标签时会自动更新)。

然后您的默认范围可能如下所示:

default_scope :order => 'taggings_count DESC'

有关详细信息,请在 Rails 指南中搜索“counter_cache”AR associations

关于ruby-on-rails-3 - Rails 3 - 默认范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6206148/

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