当您在 shell 中键入 rake routes 时,它会显示一个不错的路由列表:
new_edition GET /editions/new(.:format) editions#new
edit_edition GET /editions/:id/edit(.:format) editions#edit
edition GET /editions/:id(.:format) editions#show
PUT /editions/:id(.:format) editions#update
DELETE /editions/:id(.:format) editions#destroy
这非常有帮助,但为什么不显示应用程序中需要使用的实际代码,例如
edition GET /editions/:id(.:format) editions#show edition_path()
我猜这是因为它可能比这更多,但一般问题是当我查看为路线提供的示例时,我查找了一个如何明确编码以了解路线含义的示例......