我有用户在注册时需要回答一些问题。用户通过 Answers 连接表有_many Questions。我只是想弄清楚如何在 Users#new 操作上创建表单。我正在使用 simple_form。这是我的数据库架构:
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 %>