Ruby on Rails Tuesday, June 6, 2017



On Tuesday, June 6, 2017 at 11:21:44 PM UTC-4, fugee ohu wrote:
The rails scaffolding generator creates delete links as objects in index views so why when I google how to pass params to a delete link all the answers are examples where a path is used My links don't have a path, they have an object That's rails out of the box Like this:

   <% @press_releases.each do |pr| %>
      <tr>
        <td><%= link_to 'Edit', edit_press_release_path(pr) %></td>
        <td><%= link_to 'Delete', pr, method: :delete, data: { confirm: 'Are you sure?' } %></td>
 
I didn't write the above code, rails generated it I tried using delete_press_release_path but there was no such route available So how do I pass an additional parameter in this link please Thanks in advance

Thanks 

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/ea9aef75-0109-4be2-b72a-591617d3b9b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment