登録時にいくつかの質問に答える必要があるユーザーがいます。ユーザーには、Answers 結合テーブルを使用した多数の質問があります。Users#new アクションでフォームを作成する方法を見つけようとしています。simple_form を使用しています。ここに私のDBスキーマがあります:
ActiveRecord::Schema.define(:version => 20120831144008) do
create_table "answers", :force => true do |t|
t.integer "user_id"
t.integer "question_id"
t.text "response"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
add_index "answers", ["user_id", "question_id"], :name => "index_answers_on_user_id_and_question_id"
create_table "questions", :force => true do |t|
t.string "title"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "users", :force => true do |t|
t.string "first_name"
t.string "last_name"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
end
そのため、users#new ページでは、質問のタイトルをループしており、各質問の下にテキスト領域を作成して作成する必要があります。これは私がこれまでフォームに持っていたものです。これは機能せず、おそらく解決策にはあまり役立ちませんが.
<%= simple_form_for(@user) do |f| %>
<%= f.input :first_name %>
<%= f.input :last_name %>
<%= f.input :email %>
<%= f.input :phone %>
<%= f.input :organization %>
<%= f.input :primary_contact %>
<%= f.association :answers, collection: @questions %>
<% @questions.each do |question| %>
<div>
<strong><%= question.title %></strong>
<%= text_field_tag 'questions[]' %>
</div>
<% end %>
<%= f.button :submit %>
<% end %>
解決
これが絶対に正しい方法であるかどうかはわかりませんが、完全に醜いわけではありません。私のコントローラー@user.answers.build
では、simple_form で質問をループし、必要なデータが入力された回答フィールドを作成します。
<% Question.all.each do |question| %>
<%= f.simple_fields_for :answers do |a| %>
<div>
<strong>
<%= question.title %>
</strong>
<%= a.hidden_field :question_id, value: question.id %>
<%= a.input :response, label: false %>
</div>
<% end %>
<% end %>