有没有人遇到过这个问题?我有一个用户对象和一个询问用户生日的 simple_form。
<%= f.input :birthday, as: :date, start_year: Date.today.year - 70,
end_year: Date.today.year, order: [:month, :day, :year], label: false %>
我选择的任何日期都只能选择到每个月的 12 日。如果我选择第 13 个或更高的 simple_form 表示“请输入有效日期”。很奇怪。
我从https://github.com/plataformatec/simple_form获得了这段代码,关于这段代码的所有内容都是“SimpleForm 接受与 Rails 中相应的输入类型帮助程序相同的选项”。有谁知道 Rails 中相应的输入类型助手记录在哪里?