0

我的表格是这样的

index.html.erb

<div id="comments_p">
  <%= render (:partial => "comment", :collection => tasks.comments) %>
</div>   
<% form_for :comment, :url => comment_task_path(tasks.id), :html => {:remote => true, :class => "comment_form"} do |f| -%>
  <%= f.text_field :remark, :placeholder => "Add Comments", :rows => 2, 
    :style => "width: 834px; height: 40px;"%>
  <%= f.submit "submit"%>
<% end -%>

<script type="text/javascript">
  jQuery.fn.submitWithAjax = function() {
    this.submit(function() {
      var test = $.post(this.action, $(this).serialize(), null, "script");
      $(".comment_form")[0].reset();
      alert("Comment Submitted");
      return false
    })
    return this;
  };
</script>

应用程序.js

jQuery.ajaxSetup({ 
  'beforeSend': function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")}
})

$(document).ready(function() {
  $(".comment_form").submitWithAjax();
})

我的问题是如何更新我的 div。警报有效,但我似乎找不到如何更新 div comments_p

4

1 回答 1

0

希望表单正在提交以创建Tasks 控制器的方法。由于请求是后端的js请求,因此只需按照Unobtrusive Javascript Railscasts中的说明在/app/views/tasks/文件夹中创建一个名为create.js.erb的文件,然后编写您想要执行的代码成功响应后。

在 tasks_controller.rb 中获取更新的任务变量

def create
    #...code for creating the comments for the task
    @tasks = ... #updated record with the latest comments
end

那么create.js.erb文件中的响应代码应该是

$("#comments_p").html('<%= render_partial :comment, :collection => @tasks.comments) %>');

在上述代码成功完成请求后,comments_p div 将被更新。

于 2013-03-19T07:29:37.897 回答