Rails Resource Restful Routes Helper functions and nil oject error - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T16:37:53Z http://stackoverflow.com/feeds/question/692347 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/692347/rails-resource-restful-routes-helper-functions-and-nil-oject-error 1 Rails Resource Restful Routes Helper functions and nil oject error rube_noob 2009-03-28T06:47:59Z 2009-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> &lt;%= link_to_remote "Delete", { :method =&gt; :delete, :url=&gt; phone_numbers_url(phone_number_display.id), :update =&gt; "section_phone" }%&gt; </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=&gt; phone_numbers_url(:id =&gt; 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#692446 0 Answer by mkoga for Rails Resource Restful Routes Helper functions and nil oject error mkoga 2009-03-28T08:24:52Z 2009-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#692447 1 Answer by Mike Woodhouse for Rails Resource Restful Routes Helper functions and nil oject error Mike Woodhouse 2009-03-28T08:25:41Z 2009-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> &lt;%= link_to_remote "Delete", :method =&gt; :delete, :url=&gt; phone_numbers_url(phone_number_display.id), :update =&gt; "section_phone" %&gt; </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#693102 2 Answer by François Beausoleil for Rails Resource Restful Routes Helper functions and nil oject error François Beausoleil 2009-03-28T17:04:33Z 2009-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#840771 1 Answer by waldo for Rails Resource Restful Routes Helper functions and nil oject error waldo 2009-05-08T16:46:35Z 2009-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>