使用简单表单将日期时间分解为日期和时间

时间:2016-07-28 16:18:01

标签: ruby-on-rails simple-form materialize

我正在使用Materialise css框架来格式化我的表单。我现在遇到了我想要使用日期&随附的timepicker来填充单个日期时间字段。有没有办法将单个字段分成两个单独的输入?

我正在渲染这样的字段:

.col.s6
  = f.input :date, as: :date, html5: true, input_html: {class: 'datepicker current-date', type: 'date'}
  = f.input :date, as: :time, html5: true, input_html: {class: 'datepicker current-date', type: 'date'}

这样做,只使用相同的变量名称,覆盖参数。无论如何要定义这些字段需要连接吗?

0 个答案:

没有答案