如何在使用datetime_select
帮助程序时抑制秒标记的生成?
我尝试使用:include_seconds => false
选项(在time_select
帮助器中使用),但它不起作用。
答案 0 :(得分:1)
您可以覆盖显示的内容:order,例如:
<%= f.datetime_select :fieldname, :order => [:month, :day, :year, :hour, :minute] %>
可能的选项:订单是[:月,:日,年,小时,:分钟,:秒]