0

我有一系列想要编辑的项目。编辑我的 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。

4

1 回答 1

0

尝试这个:

#config/routes.rb
#assuming your actions are in ItemsController
match 'items' => 'items#index', :via => :get
match 'item' => 'items#show', :via => :post
match 'item/edit' => 'items#edit', :via => :post

请注意,这更适用于遗留应用程序/URL,因为 Rails 约定遵循 RESTful 映射。路由指南中的更多信息。

于 2012-11-02T03:42:55.417 回答