jquery UI日期选择器不在rails中的数据库中存储值

时间:2014-07-16 11:18:45

标签: ruby-on-rails jquery-ui-datepicker

我可以点击日历中的日期,所选值显示在文本框中,但有时值不会存储到数据库中。我在一个表单中使用三个日期选择器,我不知道它为什么不能正常工作。

这是我的代码:

<script>
$(function() {
$( "#datepicker1" ).datepicker({format: 'yyyy-mm-dd'});
$( "#datepicker2" ).datepicker({format: 'yyyy-mm-dd'});
$( "#datepicker3" ).datepicker({format: 'yyyy-mm-dd'});
});
</script>
<h4><%= f.label :DOB, class:'required' %></h4>
<h4><%= f.text_field :dob, :id => "datepicker1", :placeholder => "date of birth" %></h4>

<h4><%= f.label :Start_date, class:'required' %></h4>
<h4><%= f.text_field :start_date, :id => "datepicker2", :placeholder => "start date" %> 
</h4>

<h4><%= f.label :End_date %></h4>
<h4><%= f.text_field :end_date, :id => "datepicker3", :placeholder => "end date" %></h4>

非常感谢任何帮助,

我的控制器

def index @employees = Employee.all
puts Date.parse(params[:end_date])
@employees = Employee.paginate(page: params[:page], per_page: 5)
end

0 个答案:

没有答案