私のモデルクラスは次のとおりです。
class Category < ActiveRecord::Base
acts_as_nested_set
has_many :children, :foreign_key => "parent_id", :class_name => 'Category'
belongs_to :parent, :foreign_key => "parent_id", :class_name => 'Category'
def to_param
slug
end
end
このような再帰的なルートを持つことは可能ですか:
/root_category_slug/child_category_slug/child_of_a_child_category_slug
...そして1つ
助けてくれてありがとう:)