0
イベントに属するゲームモデルのモデルイベントとフォームを1ページにまとめたい問題はイベントに属するイベントと次のゲームを保存するサブミットのための単一のボタンを持つことです。そのようなフォームとコントローラはどのように見えますか? 、あなたのEvent
モデルでそれに属するモデルとモデルのフォームを作成する
<%= form_for @event do |f| %>
#put your @event fields here
<%= f.fields_for :games, @game do |g| %>
#put your @game fields here, though you can also have the @event fields here too
<% end %>
<% end %>
あなたhas_many :games
行の後にどこかaccepts_nested_attributes_for :games
を追加:あなたのform_for
インサイド