Rails /简单形式为"选择"选项停止工作

时间:2017-11-08 18:26:40

标签: ruby-on-rails associations simple-form selected

我在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.idCity.first.id),它都会从现在开始继续收集我的收藏品的第一个价值

1 个答案:

答案 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