因此,在我的 Rails 应用程序中,我有两个资源(租金和预订)属于用户。这是我的 routes.rb 中用于设置嵌套路由的代码。
map.resources :users, :has_many => :reservations, :shallow => true
map.resources :users, :has_many => :rentals, :shallow => true
map.resources :rentals, :only => [:index]
map.resources :reservations, :only => [:index]
有没有更好的方法来做到这一点。我已经做了一些谷歌搜索,但我找不到明确的答案。
提前致谢。
-射线