Changes in the form are not saved to database

后端 未结 4 1336
轻奢々
轻奢々 2020-12-08 03:16

I\'m trying to add a date field to my form.

I added bootstrap-datepicker-rails gem, all required css and javascript.

When I choose the date in the calendar a

4条回答
  •  再見小時候
    2020-12-08 04:06

    I encountered similar problem and converting format in create action solved it for me:

    def create
         .....
         @person.dob = DateTime.strptime(params[:person][:dob], '%m/%d/%Y').to_date
         .....
         @person.save
         .....
    end
    

提交回复
热议问题