尝试在 simple_form 中为整数集合设置选定值总是失败!为什么这非常令人沮丧,不明白为什么。
打印@profile.age 认为它是正确的值 19
看法:
= f.input :age_from,
:collection => 18..60,
:selected => @profile.age
结果:
defaults to 18
看法:
= f.input :age_from,
:collection => 18..60,
:selected => "#{@profile.age}"
结果:
to defaults to 18
添加 :selected => "#{@profile.age.to_s}
结果:
defaults to 18