vote up 2 vote down star

Hello

I am getting an error when trying to use the resource route helper functions

	<%= link_to_remote "Delete", {
		:method => :delete, 
		:url=> phone_numbers_url(phone_number_display.id), 
		:update => "section_phone"
		}%>

and in my routes i have

       map.resources :phone_numbers

I get the following error

 You have a nil object when you didn't expect it!
 The error occurred while evaluating nil.to_sym

When I use

:url=> phone_numbers_url(:id => phone_number_display.id)

I no longer get the error but I get the unrestful url of

 http://localhost:3000/phone_numbers?id=1

I do no understand this error as phone_number_display.id is not null

flag

4 Answers

vote up 2 vote down check

You want the singular version of the route:

phone_number_url(phone_number_display)
link|flag
Great, this was it. – rube_noob Mar 28 at 17:43
vote up 0 vote down

if you've just created this route, you might need to restart your mongrel.

also you might want to run rake routes to double check the named route.

link|flag
yup I did that, it does not seem to be the issue – rube_noob Mar 28 at 17:39
vote up 1 vote down

There should not be a need to enclose the trailing arguments in {}, since they'll be transformed into a Hash anyway. See the api for link_to_remote. I don't know if that's what is causing the problem, but it's the first thing I'd try.

    <%= link_to_remote "Delete",
            :method => :delete, 
            :url=> phone_numbers_url(phone_number_display.id), 
            :update => "section_phone"
            %>

After that, if it's still not working, I'd look at the phone_numbers_url(phone_number_display.id) part, to check that I'm getting what I expect.

link|flag
This code gives me the same error – rube_noob Mar 28 at 17:41
Combined with the solution it works. Thanks – rube_noob Mar 28 at 17:44
vote up 1 vote down

It might also be preferable to use phone_numbers_path(phone_number_display.id) as this will give you the relative path "/phone_numbers?id=1" instead of the full http://localhost.../.. path.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.