Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So lets say I have the following route in my routes.rb file -

get 'site/user/:id' => 'users#show', :as => :get_user

How do I use link_to create a link to a particular user id by using named route :get_user

# so this will spit out "site/user", but i want /site/user/23 as output
link_to 'Some User', :get_user 

NOTE -: I dont want to map user as a resource in my routes file. Also "user" object is a hash not an instance of my User model.

For now this is what I have. Looking for a cleaner approach, is there any?

link_to 'Some User', {:controller => 'users', :action => 'show', :id => "#{user[:id]}"}

I am on Rails v3.0.3

share|improve this question

2 Answers

up vote 1 down vote accepted

get_user_path(user[:id]) should work since you're using a hash rather than an ActiveRecord model.

share|improve this answer

get_user_path(user) should work.

(Assuming user is an instance of your User model.)

share|improve this answer
its not, its a hash. Would this work if user is a hash? – user310525 Jan 20 '11 at 0:38
@user310525 Yes and no. *_path accepts integers, not just records. get_user_path(user[:id]) would work. – vonconrad Jan 20 '11 at 1:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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