当我为用户加载编辑页面时,它会显示此错误。为什么?
在我的模型中,我有
等模型错误
未定义的方法`name'对于#
_form.html.erb
<%= f.fields_for :user_profile do |profile_form| %>
<%= profile_form.label :country_id %><br />
<%= profile_form.collection_select :country_id, Country.order(:name_en), :id, :name_en, include_blank: true %>
<%= profile_form.label :prefecture_id, "State or Province" %><br />
<%= profile_form.grouped_collection_select :prefecture_id, Country.order(:name_en), :prefectures, :name, :id, :name, include_blank: true %>
<% end %>
模型/ country.rb
has_many:都道府县
模型/ prefectures.rb
belongs_to:country
答案 0 :(得分:1)
试试这个,
<%= profile_form.grouped_collection_select :prefecture_id,Country.order(:name_en),:prefectures, :name_en, :id, :name,include_blank: true %>