使用'groups_collection_select'时,为什么没有方法错误?

时间:2012-12-25 10:24:43

标签: ruby-on-rails ruby-on-rails-3 view

当我为用户加载编辑页面时,它会显示此错误。为什么?

在我的模型中,我有

等模型
  • 用户(此模型有一个UserProfile)
  • UserProfile(此模型属于User,有一个国家和一个县)
  • 国家/地区(此模型属于UserProfile,并且有许多县)
  • Prefecture(此模型属于Country and UserProfile)

错误

  

未定义的方法`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

1 个答案:

答案 0 :(得分:1)

试试这个,

<%= profile_form.grouped_collection_select :prefecture_id,Country.order(:name_en),:prefectures, :name_en, :id, :name,include_blank: true %>