On Wed, Jun 7, 2017 at 11:24 AM, Jim Ruther Nill <jvn...@gmail.com> wrote:

>
>
> On Wed, Jun 7, 2017 at 11:21 AM, fugee ohu <fugee...@gmail.com> 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
>>
>
> just press_release_path(additional_params: true)
>

my bad. submitted immediately.

should be press_release_path(pr, additional_params: true)


>
> The reason why that goes to the destroy action is because of method:
> :delete
>
>> --
>> 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+unsubscr...@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/ms
>> gid/rubyonrails-talk/046f61e3-f8de-4adb-b33d-6fa39b519e4b%
>> 40googlegroups.com
>> <https://groups.google.com/d/msgid/rubyonrails-talk/046f61e3-f8de-4adb-b33d-6fa39b519e4b%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> -------------------------------------------------------------
> visit my blog at http://jimlabs.herokuapp.com
>



-- 
-------------------------------------------------------------
visit my blog at http://jimlabs.herokuapp.com

-- 
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+unsubscr...@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/CAJ8y7Vf2WHAADA4eeHP6vEwoD1ZsTJ%2B%2BphT1sUqiuuTt%3DjRBMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to