Ruby on Rails
Thursday, November 29, 2012
On Fri, Nov 30, 2012 at 1:16 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:41, Jim Ruther Nill <jvnill@gmail.com> wrote:
On Fri, Nov 30, 2012 at 12:51 PM, Sumit Srivastava <sumit.theinvincible@gmail.com> wrote:
Hi,
I have a controller named Users with index action.
def index
puts "************* #{params[:city]}"
...
...
end
From the view,
link_to(:city, list_users_with_city_path(:city => city.name))You implied below that list_users_with_city_path is not yet definedat this point so why is it not giving any errors? where did youget list_user_with_city_path if you haven't defined it in the routed yet?
Wrote this by mistake. I use it this way after defining the path. What doesn't works is,
link_to(:city, users(:city => city.name)
And this is not giving any errors but nothing is received in the index action.
use users_path. I'm not sure why it's not giving any errors.
--But when I click on this link, it doesn't prints out anything for the params. All the "*" are being printed. The url in the browser displays,
localhost:3000/users?city=delhi
Instead when I create a new route, get '/users/:city' => 'users#index', :as => list_users_with_city
This works fine. I get proper output.
What could be the problem?
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/lpsqYbWtC0cJ.
For more options, visit https://groups.google.com/groups/opt_out.
--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.com
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.com
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment