Rails Resource Restful Routes Helper functions and nil oject error - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T16:37:53Zhttp://stackoverflow.com/feeds/question/692347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/692347/rails-resource-restful-routes-helper-functions-and-nil-oject-error1Rails Resource Restful Routes Helper functions and nil oject errorrube_noob2009-03-28T06:47:59Z2009-05-08T16:46:35Z
<p>Hello</p>
<p>I am getting an error when trying to use the resource route helper functions</p>
<pre><code> <%= link_to_remote "Delete", {
:method => :delete,
:url=> phone_numbers_url(phone_number_display.id),
:update => "section_phone"
}%>
</code></pre>
<p>and in my routes i have </p>
<pre><code> map.resources :phone_numbers
</code></pre>
<p>I get the following error</p>
<pre><code> You have a nil object when you didn't expect it!
The error occurred while evaluating nil.to_sym
</code></pre>
<p>When I use</p>
<pre><code>:url=> phone_numbers_url(:id => phone_number_display.id)
</code></pre>
<p>I no longer get the error but I get the unrestful url of</p>
<pre><code> http://localhost:3000/phone_numbers?id=1
</code></pre>
<p>I do no understand this error as phone_number_display.id is not null</p>
http://stackoverflow.com/questions/692347/rails-resource-restful-routes-helper-functions-and-nil-oject-error/692446#6924460Answer by mkoga for Rails Resource Restful Routes Helper functions and nil oject errormkoga2009-03-28T08:24:52Z2009-03-28T08:24:52Z<p>if you've just created this route, you might need to restart your mongrel.</p>
<p>also you might want to run rake routes to double check the named route.</p>
http://stackoverflow.com/questions/692347/rails-resource-restful-routes-helper-functions-and-nil-oject-error/692447#6924471Answer by Mike Woodhouse for Rails Resource Restful Routes Helper functions and nil oject errorMike Woodhouse2009-03-28T08:25:41Z2009-03-28T08:25:41Z<p>There should not be a need to enclose the trailing arguments in {}, since they'll be transformed into a Hash anyway. See the <a href="http://apidock.com/rails/ActionView/Helpers/PrototypeHelper/link%5Fto%5Fremote" rel="nofollow">api for link_to_remote</a>. I don't know if that's what is causing the problem, but it's the first thing I'd try.</p>
<pre><code> <%= link_to_remote "Delete",
:method => :delete,
:url=> phone_numbers_url(phone_number_display.id),
:update => "section_phone"
%>
</code></pre>
<p>After that, if it's still not working, I'd look at the <code>phone_numbers_url(phone_number_display.id)</code> part, to check that I'm getting what I expect.</p>
http://stackoverflow.com/questions/692347/rails-resource-restful-routes-helper-functions-and-nil-oject-error/693102#6931022Answer by François Beausoleil for Rails Resource Restful Routes Helper functions and nil oject errorFrançois Beausoleil2009-03-28T17:04:33Z2009-03-28T17:04:33Z<p>You want the singular version of the route:</p>
<pre><code>phone_number_url(phone_number_display)
</code></pre>
http://stackoverflow.com/questions/692347/rails-resource-restful-routes-helper-functions-and-nil-oject-error/840771#8407711Answer by waldo for Rails Resource Restful Routes Helper functions and nil oject errorwaldo2009-05-08T16:46:35Z2009-05-08T16:46:35Z<p>It might also be preferable to use <code>phone_numbers_</code><strong>path</strong><code>(phone_number_display.id)</code> as this will give you the relative path "<code>/phone_numbers?id=1</code>" instead of the full <code>http://localhost.../..</code> path.</p>