how to build a select tag from a range in rails

后端 未结 4 2468
太阳男子
太阳男子 2021-02-20 02:37

I want to have a drop down that consists of values 10% 20% 30% so on till 100.

In ruby It can be done by

(10..100).step(10) { |i| p i }
4条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-20 03:24

    Without Providing a Formatted Value.

    If you landed here, like me, without the need to use step() or to provide a formatted value (e.g. "20%"), this is a nice and succinct method:

    <%= f.select :year, (2011..Date.today.year).to_a %>
    
    
    

    With a Default

    <%= f.select :year, options_for_select( (2011..Date.today.year).to_a, Date.today.year ) %>
    
    
    

提交回复
热议问题