Ruby on Rails Tuesday, June 6, 2017

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

--
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/046f61e3-f8de-4adb-b33d-6fa39b519e4b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment