- フォームの基本的な構文は何ですか?
「accepts_nested_attributes_for」は実際に何をしていますか?
私のコントローラーには何が必要ですか?
これが現在私のフォームにあるものです:
-
<% f.fields_for :questions do |builder| %><br />
<%= builder.label :content, "Question" %><br />
<%= builder.text_area :content, :rows => 3 %><br />
<%end%>