8

I have the following code:

@profile.update_attributes(params[:xxxx_profile])

where xxxx stands for either male or female. Basically the form submit passes either a set of female_profile[foo] or a male_profile[foo] and i want to change it accordingly. Assuming I have a string that can be inserted in lieu of xxxx, how do I dynamically create this symbol?

Thanks.

3 Answers3

12

Try something like:

@profile.update_attributes(params["#{gender}_profile".to_sym])

or, you should be able to pass in the string without converting to a symbol, because Rails uses a HashWithIndifferentAcceess for params: http://api.rubyonrails.org/classes/HashWithIndifferentAccess.html

@profile.update_attributes(params["#{gender}_profile"])
jkrall
  • 536
  • 3
  • 10
3

Figured it out. Thought it might be useful for someone.

@profile.update_attributes(params[(@sexstring + "_profile").to_sym])
1

You could also do

@profile.update_attributes(params[:"#{gender}_profile"])
nowk
  • 32,822
  • 2
  • 35
  • 40