4

为了简单起见,我有一个更新部分的表单。那里没什么特别的。在部分中,我有一个 jQuery 可排序列表。在更新表单之前,我可以毫无问题地在列表中拖动东西。

但是,在我更新列表之后,就像 js 没有重新加载一样,我必须刷新整个页面才能让事情再次滚动。

我已经尝试了一切,甚至从 Ryan Bates Esq 借用了演示 jQuery 应用程序。这边。在我将一些 js shizzle 放入部分后,这也不起作用。

我敢肯定这很简单,但我是一个 ajax / jQuery 新手,我真的很挣扎。

看法:

#test_one
  = render "test_one"

部分“test_one”

= form_for @location, :remote => true do |f|
  %table
    %tr= collection_select(:location, :type_ids, Type.all, :id, :name, {:prompt => true}, :multiple => true, :class=>"chzn-select")
     %tr
       %td
         %ul#types.unstyled{"data-update-url" => sort_types_locations_url}
           - @types.each do |type|
             = content_tag_for :li, type do
               %span.handle
                 [Drag]
               = type.name

更新.js.erb

$("#test_one").html('<%= escape_javascript render("test_two") %>');

在我的控制器中:

  def update
    @location = Location.find(params[:id])
    @types = @location.types.order('location_types.position').limit(2)
    respond_to do |format|
      if @location.update_attributes!(params[:location])
        flash[:notice] = 'Settings updated successfully'
        format.html { redirect_to edit_location_path }
        format.js
      else
        format.html { render action: "edit_access" }
        format.js { render action: "update_access_errors" }
      end
    end
  end

最后在locations.js.coffee

jQuery ->
  $('#types').sortable(
      axis: 'y'
      update: ->
        $.post($(this).data('update-url'), $(this).sortable('serialize'))
      )

更新有效,我没有收到任何错误,并且我的控制台中没有任何内容。现在我迷失了很多 - 我如何在更新记录后让 js 重新加载?

4

1 回答 1

5

原因是,您的自定义 js(关于可排序)已加载到准备好的文档中,并且一旦部分更新就不会再次触发。

解决方案是:将您的自定义 js 包装到一个函数中。当文档准备好并发生更新时调用此函数。

# locations.js.coffee
$ ->
  $(document).custom_js()

$.fn.custom_js ->
  $('#types').sortable(
    axis: 'y'
    update: ->
      $.post($(this).data('update-url'), $(this).sortable('serialize'))
    )

# update.js.erb
$("#test_one").html('<%= escape_javascript render("test_two") %>');
$(document).custom_js();

关于自定义 js 功能的旁注:无需在此处包装所有自定义代码,只需与 Ajax 将添加/更新的内容相关的部分即可。

于 2013-05-21T14:25:12.980 回答