在简单形式选择字段中将数字范围作为集合。
<%= f.input :college_class, as: :select, collection: 1940..2018,
prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>
如何在选择字段中以DESC顺序设置数字范围?
答案 0 :(得分:3)
您可以使用downto方法,如下所示:
<%= f.input :college_class, as: :select, collection: 2018.downto(1940),
prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>