我知道我可以用Rails 3 routes.rb
指定嵌套資源是這樣的:如何在Rails 3中路由多層嵌套資源?
resources :users do
resources :posts
end
不過,我想補充comments
到posts
。我應該在我的routes.rb
文件中寫什麼?這是正確的方法嗎?我可以繼續嵌套它們嗎?
resources :users do
resources :posts do
resources :comments
end
end
是的,但如果你這樣做,你最終還會得到不同於你最初發布的路線。 – PhillipKregg 2014-05-14 02:10:37