How to rename the default identifier param "id" in Rails' map.resources()? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T08:13:37Zhttp://stackoverflow.com/feeds/question/810385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/810385/how-to-rename-the-default-identifier-param-id-in-rails-map-resources2How to rename the default identifier param "id" in Rails' map.resources()?newtonapple2009-05-01T06:21:27Z2009-05-03T00:05:30Z
<p>I like all the default routes that are generated by Rail's <strong>map.resources</strong>. But, there are cases where I would like to use a non-numeric identifier in my routes. For example, If have a nested route consist of users and their articles, a standard route could be written as such:</p>
<pre><code>map.resources :users, :has_many => [:articles] # => e.g. '/users/:id/articles/:id'
</code></pre>
<p>However, there are many advantages / reasons not to use the default numerical identifier generated by Rails. Is there a way to replace the default :id params to another canonical identifier of my choice without resulting to writing custom routes for every standard action? Say if I want a route in the following format:</p>
<pre><code>'/users/:login/articles/:id'
</code></pre>
<p>Is this kind of routes achievable using <strong>map.resources</strong>?</p>
http://stackoverflow.com/questions/810385/how-to-rename-the-default-identifier-param-id-in-rails-map-resources/810891#8108915Answer by Paul Horsfall for How to rename the default identifier param "id" in Rails' map.resources()?Paul Horsfall2009-05-01T10:18:35Z2009-05-01T10:18:35Z<p>You can change the default of using the ID in URLs by overriding to_param in your model. e.g.</p>
<pre><code>class User < ActiveRecord::Base
def to_param
login
end
end
user_articles_path(@user) => "/users/:login/articles"
</code></pre>
<p>The only other change you'll need to make is to find users by login rather than by ID in your controllers.</p>
http://stackoverflow.com/questions/810385/how-to-rename-the-default-identifier-param-id-in-rails-map-resources/815957#8159575Answer by chrisk for How to rename the default identifier param "id" in Rails' map.resources()?chrisk2009-05-03T00:05:30Z2009-05-03T00:05:30Z<p>As of Rails 2.3, it's not possible to change the parameter name and still use the automatic routing that <code>#resources</code> provides.</p>
<p>As a workaround, you can map <code>articles</code> with a <code>:path_prefix</code> and <code>:name_prefix</code>:</p>
<pre><code>map.resources :articles, :path_prefix => "/users/:login",
:name_prefix => "user_"
</code></pre>
<p>The <code>:path_prefix</code> affects the URL, and the <code>:name_prefix</code> affects the generated named routes, so you'll end up with these routes:</p>
<pre><code> user_articles GET /users/:login/articles(.:format) {:controller=>"articles", :action=>"index"}
POST /users/:login/articles(.:format) {:controller=>"articles", :action=>"create"}
new_user_article GET /users/:login/articles/new(.:format) {:controller=>"articles", :action=>"new"}
edit_user_article GET /users/:login/articles/:id/edit(.:format) {:controller=>"articles", :action=>"edit"}
user_article GET /users/:login/articles/:id(.:format) {:controller=>"articles", :action=>"show"}
PUT /users/:login/articles/:id(.:format) {:controller=>"articles", :action=>"update"}
DELETE /users/:login/articles/:id(.:format) {:controller=>"articles", :action=>"destroy"}
</code></pre>
<p>As a general rule-of-thumb, though, I'd stick with the Rails default convention of <code>:user_id</code>, with the routing you posted in your question. It's generally understood that <code>:id</code> and <code>:user_id</code> don't necessarily imply "numeric identifier" — they imply "resource identifier," whatever that might be. And by sticking to the default convention, your code will be easier to understand for anyone who's used resource routes in Rails.</p>
<p>To use a non-numeric identifier for a resource, just redefine <code>#to_param</code> in your model. Then, make sure to use a finder in your controller that will find by this identifier (rather than the numeric ID), such as <code>User#find_by_login!</code>.</p>