有没有办法限制rails中的datetime_select,以便它只显示某些小时,例如所以唯一的选择是下午5点到晚上10点?目前只有这个:`
<%= f.label :time %><br>
<%= f.datetime_select :time, :minute_step => 30 %>`
答案 0 :(得分:6)
这将为您提供下午5点至晚上10点之间的小时范围
<%= f.datetime_select :time, minute_step: 30, start_hour: 17, end_hour: 22 %>`