从1a页面提交两个表格

时间:2011-07-25 19:39:01

标签: ruby-on-rails ruby ruby-on-rails-3

是否可以在其中包含一个包含2个表单的视图并同时提交两个表单?

我不想使用嵌套表单。

例如:

我有:

Model Survey
|_question_id
|_answers_id 

Model Question:
|_text

Model Answer
|_text

没有嵌套表格可以做到这一点吗?例如,我想创建一个新问题(表单1)和一个新答案(表单2),在Controller中的create方法中,我将创建一个新的Survey, MANUALLY 将question_id和answers_id分配给相应的新问题和答案!

谢谢

1 个答案:

答案 0 :(得分:7)

更好的方法是使用accepts_nested_attributes_for通过一个表单提交来构建所有三个模型。

设置你的模型:

class Survey < ActiveRecord::Base
  has_one :question
  has_many :answers

  accepts_nested_attributes_for :question, :answers
end

class Question < ActiveRecord::Base
  belongs_to :survey
end

class Answer < ActiveRecord::Base
  belongs_to :survey
end

然后你可以使用rails helper来编写你的表单:

<%= form_for @survey do |form| %>
  <%= form.fields_for :question do |question_form| %>
   <%= question_form.text_field :question
  <% end %>
  <%= form.fields_for :answers do |answer_form| %>
   <%= question_form.text_field :answer
  <% end %>
  <%= form.submit %>
<% end %>

在将呈现表单的控制器操作中,您需要在内存中构建新记录,如下所示:

class SurveyController < ApplicationController
  def new
    @survey = Survey.new
    @survey.build_question
    @survey.answers.build
  end
end

您可以详细了解accepts_nested_attributes_for herehttp://ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes