0
我想要一個collection_select,該月份中的天數爲1 - 31。有沒有簡單的方法來創建此循環來填充我的collection_select?Rails:使用循環填充collection_select月份中的天數
我想要一個collection_select,該月份中的天數爲1 - 31。有沒有簡單的方法來創建此循環來填充我的collection_select?Rails:使用循環填充collection_select月份中的天數
collection_select :aaa, :bbb, (1..31).to_a, :to_s, :to_s
更新:
其實,你需要的是:
collection_select :aaa, :bbb, 1..31, :to_s, :to_s