有没有办法将动态属性添加到restful路径
resources :food_menus do
resources :categories
end
这产生了这个和其他的粗略路线:
food_menu_categories GET /food_menus/:food_menu_id/categories(.:format) categories#index
我想做什么:
ExtraDynamicAttribute_food_menu_categories GET ExtraDynamicAttribute/food_menus/:food_menu_id/categories(.:format) categories#index
之前要添加的ExtraDynamicAttribute。
任何解决方案
答案 0 :(得分:1)
您可以使用范围
scope ':attribute' do
resources :food_menus do
resources :categories
end
end