編集したい一連のアイテムがあります。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 を具体的に構成するためにページ内のリンクを構成する必要がありますか。