我无法让Trent Richardson的DateTime选择器以Rails可以理解并正确保存到数据库的方式格式化输出。
以下是我的模特:
class Reservation < ActiveRecord::Base
attr_accessible :email, :message, :booking_time, :restaurant_id
belongs_to :restaurant
validates :booking_time, :presence => true
validates :email, :presence => true
end
以下是我的application.js文件:
$(function () {
$( "#bookingTime" ).datetimepicker({
timeFormat: "hh:mm tt",
stepMinute: 5,
hourMin: 8,
hourMax: 22
});
});
以下是我的_form.html.erb文件:
<div class="control-group">
<%= f.label :booking_time, :class => 'control-label' %>
<div class="controls">
<%= f.text_field :booking_time, :id => 'bookingTime', :"data-required" => "true", :class => "required", :"required" => "true" %>
</div>
</div>
我是Rails的新手,无法确定如何以Rails可以正确保存到数据库的方式格式化时间和日期。
任何建议都非常感谢。
谢谢!