我有一系列想要编辑的项目。编辑我的 URL 的当前格式时,显示如下:
http://mysite/items <---- Lists the items
http://mysite/items/1/ <------ more detailed view of items
http://mysite/items/1/edit <----- Ability to edit the item
我想尝试并应用于我的结构的路由配置如下所示:
http://mysite/items <---- Lists the items
http://mysite/item <---- Detailed view of the item by sending the item ID as POST data
http://mysite/item/edit <---- Edits the item by sending the item ID as POST data
这严格来说是rails路由配置的一个事件,还是我必须配置items
页面中的链接来专门构建URL。