我正在使用Rails 3.1并首次使用datetime_select.我想指定分钟选择框有15分钟间隔而不是1分钟间隔:
<%= f.datetime_select :start_datetime,:ampm => true,:start_minute => [0,15,30,45] %>
但这似乎不起作用. :start_datetime是在Event模型中调用属性的内容.这可能是导致问题的保留字吗?
尝试传递:minute_step => 15
<%= f.datetime_select :start_datetime,:minute_step => 15 %>
原文链接:https://www.f2er.com/ruby/269307.html