我正在为我的应用程序使用 Rails 3.2.14、MySQL 和 simple_form。
我将notification_time
列字段设置为datetime
,并将其自定义为像这样的文本字段_create_form.erb
<%= f.input :notification_time, :input_html => { :value => DateTime.now.strftime("%d/%m/%Y - %H:%M %p")}, :as => :string %>
这导致08/10/2013 - 13:50 PM
在浏览器上。
我有一个_update_form.erb
with just <%= f.input :notification_time, :as => :string %>
,结果是2013-10-08 13:50:00 -0400
08/10/2013 - 13:50 PM
当我更新表格时如何确保我能得到?