Rails - 如何在选择字段中将数字集合设置为DESC?

时间:2013-05-05 20:35:27

标签: ruby-on-rails simple-form

在简单形式选择字段中将数字范围作为集合。

<%= f.input :college_class, as: :select, collection: 1940..2018, 
    prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>

如何在选择字段中以DESC顺序设置数字范围?

1 个答案:

答案 0 :(得分:3)

您可以使用downto方法,如下所示:

<%= f.input :college_class, as: :select, collection: 2018.downto(1940), 
prompt: '----', hint: 'Year', :input_html => { :class => 'span1'} %>