2

有没有办法限制 rails 中的 datetime_select 以便它只显示某些时间,例如,唯一的选项是下午 5 点到 10 点?目前只有这个:`

<%= f.label :time %><br>
<%= f.datetime_select :time,  :minute_step => 30 %>`
4

1 回答 1

6

这将为您提供下午 5 点到 10 点之间的一个小时范围

<%= f.datetime_select :time,  minute_step: 30, start_hour: 17, end_hour: 22 %>`
于 2016-02-07T00:54:18.393 回答