vote up 1 vote down star
1

How do we pass parameters in redirect_to in rails? I know we can pass id using this:

redirect_to :action => action_name,:id => 3

If I want to pass additional parameters like some form data how to achieve it?

flag
What are you actually trying to accomplish? Have you considered saving the data in the session? – Michael Sepcot Sep 16 at 1:41

1 Answer

vote up 3 vote down

Just append them to the options:

redirect_to :controller => 'thing', :action => 'edit', :id => 3, :something => 'else'

Would yield /thing/3/edit?something=else

link|flag
1  
but I don't want it to be visible to user.... – markiv Sep 16 at 0:45
2  
You can't redirect with a POST. From the HTTP 1.1 docs under the 3xx definitions: "The action required MAY be carried out by the user agent without interaction with the user if and only if the method used in the second request is GET or HEAD." Expand on what you're really trying to accomplish and we can probably push you in the correct direction. – jdl Sep 16 at 1:11
Hi Thank a lot for your response.I am a newbie to web development. I am trying to know different ways to invoke an action.Your response has clarified lots of my doubts. Thanks again :)) – markiv Sep 16 at 1:24

Your Answer

Get an OpenID
or

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