对嵌套资源的路由有什么好的参考吗?
例如 -
对于单一资源
resources:photos
各种途径是:
photos_path returns /photos
new_photo_path returns /photos/new
edit_photo_path(id) returns /photos/:id/edit (for instance, edit_photo_path(10) returns /photos/10/edit)
photo_path(id) returns /photos/:id (for instance, photo_path(10) returns /photos/10)
下面列出的答案的类似路径是什么?
resources :chapters do
resources :questions do
resources :answers
end
end
答案 0 :(得分:1)
运行
rake routes
它会列出你所有的路线
答案 1 :(得分:1)
您是否尝试过“从外部进行Rails路由”指南?我发现它很好地解释了嵌套资源: