在我的rails应用程序中,我有两棵相同但安装在两点上的树:
resources :organizations do
large_routing_tree
resources :projects do
large_routing_tree
end
end
large_routing_tree包含大约10个嵌套资源。
有没有比复制粘贴路线更好的方法呢?
答案 0 :(得分:1)
我的意思是
resources :organizations do
resources :projects, :shallow => true do
large_routing_tree
end
end