我正在使用Rails 3.1并首次使用datetime_select
。我想指定分钟选择框,间隔为15分钟而不是1分钟:
<%= f.datetime_select :start_datetime, :ampm => true, :start_minute => [0,15,30,45] %>
但这似乎不起作用。 :start_datetime
是Event
模型中调用属性的内容。这可能是导致问题的保留字吗?
答案 0 :(得分:23)
尝试传递:minute_step =&gt; 15
<%= f.datetime_select :start_datetime, :ampm => true, :minute_step => 15 %>