我在simple_form中遇到了username
选项的问题。
历史上你可以这样做:
selected
它突然停止工作,我无法弄清楚原因。无论我尝试什么(f.association :city, label: "City", collection: City.where(country: "France"), label_method: :name, value_method: id, selected: City.first.id
,City.last.id
,City.first.id
),它都会从现在开始继续收集我的收藏品的第一个价值
答案 0 :(得分:0)
试试这个
f.association :city, label: "City", collection: City.where(country: "France"),:selected => City.first.id, label_method: :name, value_method: id
或
f.association :city, label: "City", collection: City.where(country: "France"),:selected => City.where(country: "France").first.id, label_method: :name, value_method: id