resources :events do
resources :attendees
end
resources :attendees
如以上情况。
我看:http://ihower.tw/rails3/restful-practices.html 是这样写的:
resources :events do
resources :attendees, :controller => 'event_attendees'
end
resources :attendees
你是怎么写的?