Rails路由配置

时间:2012-11-02 01:49:40

标签: ruby-on-rails-3

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

1 个答案:

答案 0 :(得分: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映射。 the routing guide中的更多信息。