This project is archived and is in readonly mode.
link_to route with method
Reported by TMorgan99 | May 6th, 2010 @ 01:13 AM
In the configuration, 'toggle' is declared :method => :post.
resources :products do
member do
get :short
post :toggle
end
:::
end
But in the view,
<%= link_to 'Toggle', toggle_product_path(@product), :method
=> :post %>
<%= link_to 'Toggle', toggle_product_path(@product) %> XX
WRONG XX
I should not have to specify the method.
It breaks the DRY principle
'toggle_product_path' should supply its specified HTTP method.
Comments and changes to this ticket
-
Tanel Suurhans May 6th, 2010 @ 07:57 AM
You do realize that when using a route product_path(@product), it now depends on the HTTP method supplied what method will be invoked? Like PUT on that path will invoke update and GET will invoke show.
The behavior you described is imho totally expected, and has nothing to do with DRY.
-
Santiago Pastorino February 2nd, 2011 @ 05:02 PM
- State changed from new to open
This issue has been automatically marked as stale because it has not been commented on for at least three months.
The resources of the Rails core team are limited, and so we are asking for your help. If you can still reproduce this error on the 3-0-stable branch or on master, please reply with all of the information you have about it and add "[state:open]" to your comment. This will reopen the ticket for review. Likewise, if you feel that this is a very important feature for Rails to include, please reply with your explanation so we can consider it.
Thank you for all your contributions, and we hope you will understand this step to focus our efforts where they are most helpful.
-
Santiago Pastorino February 2nd, 2011 @ 05:02 PM
- State changed from open to stale
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
<h2 style="font-size: 14px">Tickets have moved to Github</h2>
The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>