在简单的表单选择字段中有一个数字范围作为集合。
<%= f.input :college_class, as: :select, collection: 1940..2018,
prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>
如何设置数字范围,使其在选择字段中按 DESC 顺序排列?
在简单的表单选择字段中有一个数字范围作为集合。
<%= f.input :college_class, as: :select, collection: 1940..2018,
prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>
如何设置数字范围,使其在选择字段中按 DESC 顺序排列?
您可以使用downto方法,如下所示:
<%= f.input :college_class, as: :select, collection: 2018.downto(1940),
prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>