11

我的数据库中有一个date类型字段。

这是我正在使用的视图代码:

# Using 'as: :string' to avoid those three dropdowns rails generates.
= f.input_field :start_date, as: :string, class: 'form-control datepicker'

保存日期时,我使用一个 jquery 插件,该插件显示一个日历并写入如下日期:11/05/2013.

但是在编辑同一条记录时,输入会填充一个 value 2013-05-11

我怎样才能使它变得如此 simple_form 实际上尊重我定义的日期格式en.yml

4

2 回答 2

31

这是您需要的:

f.input :my_date,
        :as => :string, 
        :input_html => { :value => localize(f.object.my_date) }

PS:这是谷歌搜索的第一个链接:)

于 2013-11-04T05:40:59.830 回答
9

我创建了这个类,可以很容易地做到这一点:

f.input :my_date, :as => :date_picker

将此类添加到您的 lib/ 文件夹并确保包含它(或将其配置为自动加载):

class DatePickerInput < SimpleForm::Inputs::StringInput
  def input
    value = @builder.object.send(attribute_name)
    input_html_options[:value] = case value
                                   when Date, Time, DateTime
                                     format = options[:format] || :medium
                                     value.to_s(format)
                                   else
                                     value.to_s
                                 end

    input_html_options[:class] ||= []
    input_html_options[:class] << "date_picker_input"
    @builder.text_field(attribute_name, input_html_options)
  end
end
于 2014-06-12T23:43:49.150 回答