Rails:重复的路由树;有没有更好的办法?

时间:2011-10-06 18:47:34

标签: ruby-on-rails-3 routes

在我的rails应用程序中,我有两棵相同但安装在两点上的树:

resources :organizations do

  large_routing_tree

  resources :projects do
    large_routing_tree
  end
end

large_routing_tree包含大约10个嵌套资源。

有没有比复制粘贴路线更好的方法呢?

1 个答案:

答案 0 :(得分:1)

我的意思是

resources :organizations do 
  resources :projects, :shallow => true do
    large_routing_tree
  end
end