以下を考えると:
モデル
class Location < ActiveRecord::Base
has_many :games
end
class Game < ActiveRecord::Base
validates_presence_of :sport_type
has_one :location
accepts_nested_attributes_for :location
end
コントローラ
def new
@game = Game.new
end
ビュー (フォーム)
<%= simple_form_for @game do |f| %>
<%= f.input :sport_type %>
<%= f.input :description %>
<%= f.simple_fields_for :location do |location_form| %>
<%= location_form.input :city %>
<% end %>
<%= f.button :submit %>
<% end %>
場所フィールド (都市) がフォームに表示されないのはなぜですか? エラーは発生しません。私は何が欠けていますか?