我试图在下拉/选择文本字段中将某个值设为默认选择的值。我已经尝试了很多选择都无济于事。谁知道如何根据 Profile 模型中的值设置默认值?
= f.input_field :state_id,
:label => "Your state",
:collection => DataState.all,
:default => [DataState.where(:id => @user.profile.state_id)],
:style => "width: 110px !important"
我使用 simple_form