0

我正在制作一个简单的日程安排应用程序。我正在尝试 simple_form,我已经实现了一个 JQuery Datepicker,它返回一个像 04/30/2012 这样的日期。

#_form.html.erb
<%= simple_form_for @workout, :html => { :class => 'form-horizontal' } do |f| %>
  <%= f.input :name %>
  <%= f.input :date, :as => :date_picker%>
    <%= f.input :time %>
    <%= f.button :submit %>
    <%= link_to t('.cancel', :default => t("helpers.links.cancel")),
                workouts_path %>
<% end %>

#application.js
$("input.date_picker").datepicker();

问题是这个日期被视为 DD/MM/YYYY 而不是 MM/DD/YYYY。我想保留原始格式,因为这样可以让事情更自然,但我无法弄清楚如何接受所​​需的日期格式。

4

1 回答 1

2

我相信您正在寻找formateDate方法。

于 2012-05-01T02:06:17.040 回答