下面是代碼從我的文件/home/divya/climb/project1/app/views/cities/new.html.erb中提取出來,其中第5行提出了這個錯誤:Ruby on rails錯誤undefined方法`map'for nil:NilClass
undefined method `map' for nil:NilClass
提取的源(左右線#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