по следующей ссылке
<%= link_to "Login to comment", :url => new_session_url(:return_to => request.request_uri, :anchor => 'commentForm'), :method => :get, :html => { :id => 'login_to_comment'} %>
генерирует следующий URL:
http://localhost:3000/session/new?return_to=%2Fnature_photos%2Fsdfds#commentForm
и параметры, как показано ниже из журналов.
Processing SessionsController#new (for 127.0.0.1 at 2009-07-16 02:04:44) [GET]
Parameters: {"return_to"=>"/nature_photos/sdfds", "action"=>"new", "controller"=>"sessions"}
Completed in 74721ms (View: 15, DB: 0) | 200 OK [http://localhost/session/new?return_to=%2Fnature_photos%2Fsdfds]
Здесь мне нужно, чтобы якорь #commentForm был исключен из параметра return_to
Мне нужно получить это значение, чтобы прокрутить вниз к форме комментария внизу страницы.