全天好,
有人可以帮助我嵌套资源和最佳实践.
我想限制我的:事件路由到:show和:index,这是正确的方法吗?
resources :events do resources :registrations,:except => [:index] end resources :events,:only => [:index,:show]
这是Rubyist最好的办法吗?我添加了两行资源:事件,还是有一种方式将它全部组合在一个块中?
提前致谢.
解决方法
是.您可以将其组合在一个块中,如:
resources :events,only: [:index,:show] do resources :registrations,except: :index end