标签: ruby-on-rails-3 select loops
我想要一个collection_select,其中包含1到31个月份的日期。有没有一种简单的方法来创建这个循环来填充我的collection_select?
答案 0 :(得分:1)
collection_select :aaa, :bbb, (1..31).to_a, :to_s, :to_s
更新
实际上,您只需要:
collection_select :aaa, :bbb, 1..31, :to_s, :to_s