下面是从我的文件 /home/divya/climb/project1/app/views/cities/new.html.erb 中提取的代码,其中第 5 行引发了此错误:
nil:NilClass 的未定义方法“map”
提取的源代码(第 5 行附近):
2: <%= form_for(@city) do |f| %>
3: <%= f.label :country_id %><br />
4:
5: <%= collection_select(:city, :country_id, @countries, :id, :country_name, {:prompt => false}) %>
6: <%= render 'form' %>
7:
8: <%= link_to 'Back', cities_path %>
Rails.root: /home/divya/climb/project