我有一个复杂的Category
模型,它有 parent_categories (它们本身就是类别)。我想创建一个范围来查找所有 3 级类别(具有父母的父母的类别)。
class Category < ActiveRecord::Base
attr_accessible :title, :description, :parent_id, :category_image_attributes
has_many :subcategories, class_name: 'Category', foreign_key: 'parent_id', dependent: :destroy
belongs_to :parent_category, class_name: 'Category', foreign_key: 'parent_id'
我将如何在 ActiveRecord 中完成此操作?
== 更新 ==
所以我最终自己想通了,但我会留下这个问题,看看是否有更有效的方法来解决它:
def self.all_third_level_categories
all_ids_of_categories_with_parents = Category.where("parent_id IS NOT NULL").map { |c| c.id }
Category.find_all_by_parent_id(all_ids_of_categories_with_parents)
end