I have a model and this model has an attribute that name is status. Here is the validation for status;
validates_inclusion_of :status, :in => [:nil, :new, :old], :message => "......"
I create an edit form for my model and this is my select input;
=f.select :status, [["New Record", :new], ["Old Record", :old]], {:include_blank => false}
When I submit the edit form, i can't get status as a symbol and getting error about this area.
When try to change status parameter with "to_sym" method then it works.
params[:my_model][:status] = params[:my_model][:status].to_sym
Why should I use this method ? Is there any way to send data as a symbol ?
validates_inclusion_of :status, :in => [nil, 'new', 'old'], and forget about using symbols? – PinnyM Dec 13 '12 at 20:34