私はモデルカテゴリーを持っています:
class Category < ActiveRecord::Base
has_many :item_categories, :dependent => :destroy
has_many :items, :through => :item_categories
has_ancestry
end
およびモデルアイテム:
class Item < ActiveRecord::Base
has_many :item_categories, :dependent => :destroy
has_many :categories, :through => :item_categories, :uniq => true
end
私はこの宝石を使用しています-https ://github.com/stefankroes/ancestry
したがって、サイトのURLは次のようになります。
/category-slug/ - "categories#show"
/category-slug/subcategory-slug
/category-slug/subcategory-slug/subsubcategory-slug
/category-slug/item-slug - "items#show"
/category-slug/subcategory-slug/item-slug
/category-slug/subcategory-slug/subsubcategory-slug/item-slug
このURLのルートはどのようになりますか?そしてそれは可能ですか?