1

我有一个固定深度的树状关系模型,每一层都有一个代码属性——类似这样;

class Category < ActiveRecord::Base 
  has_many :sub_categories

  default_scope order(:code)
end

class SubCategory < ActiveRecord::Base
  belongs_to  :category
  has_many    :items

  def self.sorted
    self.joins(:category).order('"categories".code ASC, "sub_categories".code')
  end
end

class Item < ActiveRecord::Base
  belongs_to :sub_category

  def self.sorted
    # what goes here?
  end
end

Category.all获取由 排序的所有类别categories.code

SubCategory.sorted获取按 . 排序的所有子类别categories.code, sub_categories.code。我使用这种方法是因为default_scope : joins(:categories).order('categories.code, sub_categories.code')返回.find只读记录。

我想打电话Items.sorted并获得订购的所有物品,categories.code, sub_categories.code, items.code但我不知道如何。我想我需要第二个 .joins,但我没有要提供的关系名称。

4

2 回答 2

1

尝试这个:

class Item < ActiveRecord::Base
  belongs_to :sub_category

  def self.sorted
    # do not need self here as that is implied
    joins(sub_category: :category).
    order('"categories".code ASC, "sub_categories".code, "items".code')
  end
end

请参阅此处加入嵌套关联的文档

于 2013-10-01T20:53:15.113 回答
0

这行得通,但似乎应该有更好的方法;

def self.sorted
  joins(:sub_category).
    joins('INNER JOIN "categories" on "categories".id = "sub_categories".category_id').
    order('"categories".code ASC, "sub_categories".code ASC, "items".number ASC')
end
于 2013-10-02T12:19:07.873 回答