I am trying to pass a value from a view to the controller. The user is submitting a form, and I want to pass a hidden value which is not related to the form itself. So my question is: how can I manually add entries to the params hash?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
params.merge.See docs: http://ruby-doc.org/core/classes/Hash.html#M000759
A similar question: Rails – Is there a shortcut to pass all existing params?