如何使用带有rails和javascript的一个提交按钮提交两个表单

时间:2013-10-09 00:10:16

标签: javascript ruby-on-rails forms simple-form

我需要允许用户在要求他们提供帐户详细信息之前输入评论并提交。提供这些详细信息后,它们将用于创建新用户,并且他们编写的评论也会提交并属于此新用户。目前,我根本无法弄清楚如何在两个表单上触发提交操作,将所有信息传递给服务器以执行这些任务。

基本上我想要的是:

  • 用户撰写评论,提交
  • “提交”按钮显示联系信息表单
  • 用户填写此内容,提交
  • 提交两份表格的数据

我有什么:

_feedback.html.erb

  <%= simple_form_for [@post, Comment.new] do |f| %>
      <%= f.input :body, :label => false, :input_html => { :maxlength => '500', :rows => '4', :placeholder => '...'}  %>
      <% if current_user.guest != true %>
        <%= f.button :submit, "Submit" %>
      <% end %>
  <% end %>
  <% if current_user.guest == true %>
    <input type="submit" value="Submit" onclick="contactDisplay()"></input>
  <% end %>

show.html.erb

<% if current_user.guest == true %>
  <div id="contact" class="post-contact">
    <%= simple_form_for(@user, :html => { :multipart => true }, defaults: { label: false, required: true }) do |f| %>
      <%= f.input :name, :input_html => { :placeholder => 'Your Name', :id => 'name'} %>
      <%= f.input :email, :input_html => { :placeholder => 'Your Email', :id => 'email'} %>
    <% end %>
    <input type="submit" value="Submit" onclick="submitContact()"></input>
  </div>
<% end %>
<%= render 'posts/show/feedback' %>

posts.js

function contactDisplay(){
var contact = document.getElementById('contact'); 
    contact.style.display='block';
}

function submitContact(){
    document.getElementById("new_comment").submit();
    document.getElementById("new_user").submit();
}

1 个答案:

答案 0 :(得分:-1)

您可以使用嵌套表单:)以下是有关如何操作的railscast http://railscasts.com/episodes/196-nested-model-form-part-1