在rails中使用Ajax时传递Form对象

时间:2015-05-23 18:42:35

标签: javascript ruby-on-rails ajax forms

我有一个复杂的调查表格。调查

belongs_to :template
has_many :questions, :through => :template
has_many :answers, :through => :questions

即。用户创建新调查,他必须选择调查模板。调查模板将创建一些默认问题和答案字段。

<%= form_for @survey do |f| %>

  <p>Select a template:</p>
  <%= render @templates, :locals => {:patient => @patient }, :f => f %>

<% end %>

然后我渲染_templates部分,我仍然可以访问表单对象。从这里开始,用户可以点击模板名称,模板问题和答案将通过Ajax呈现。

<% @templates.each do |template| %>

  <div class="thumbnail">
    <%= link_to template.name,
                { :controller => "surveys",
                  :action => "new",
                  :template_id => template.id,
                  :patient_id => nil,
                  :f => f,
                  :remote=> true },
                :class=> "template", :id=> template.id %>
  </div>

<% end %>

调查#新

respond_to :js, :html

def new
  @template = Template.find(params[:template_id])
  @patient = Patient.find(params[:patient_id])
end

new.js.erb:

$('#assessment').append("<%= j (render new_survey_path, :locals => {:f => f} ) %>");

new_survey_path:

<%= f.fields_for :questions do |builder| %>
  <% @template.questions.where(category:"S").each do |question| %>
     <p><%= question.content %></p>
     <%= render 'answer_fields', :question=> question %>
  <% end %>
<% end %>

但是我将原始的|f|对象从@survey传递到new_survey_path时遇到了问题。我可以访问表单对象的最后一个位置是模板部分。

我该如何解决这个问题?

0 个答案:

没有答案