Rails破坏了js.erb

时间:2017-01-27 12:57:38

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

请告诉我,在销毁方法结束之前如何删除对象。当我使用下一个模式时,删除照片时会删除对象,但需要1或3秒或更长时间。

_form(编辑动作)

paths[2*n:3*n]

destroy.js.erb

<% listing.photos.each do |photo|%>
    <%= image_tag photo.image.thumb, class: 'thumbnail', id: "test"%>
    <%= link_to "remove", photo_path(photo),class: 'btn btn-primary', method: :delete, data: { confirm: 'Are you sure?' }, remote: true %>

我如何使用这种模式

_form:

$('#test').remove();

Destroy.js.erb:

<div id="test_<%= photo.id %>">
  <%= image_tag photo.image.thumb, class: 'thumbnail'%>
  <%= link_to "remove", photo_path(photo),class: 'btn btn-primary', method: :delete, data: { confirm: 'Are you sure?' }, remote: true %>

2 个答案:

答案 0 :(得分:1)

如果您希望在真正销毁服务器之前从DOM中删除图像以避免延迟,您可以在“删除”上应用event.preventDefault()。按钮单击。 这将允许您重写&#39;删除&#39;的正常行为。按钮。 请查看this example关于在原始事件之前执行某些UI操作然后触发它。

另请注意,从UI中删除某些内容并不确定它已被删除一般不是一个好主意。它对用户来说还不够清楚。所以,也许最好先隐藏图像,如果在销毁时出现服务器错误,你将再次显示它并显示一些有用的信息。

<强> UPD

考虑以下标记

<div id="test_<%= photo.id %>">
  <%= image_tag photo.image.thumb, class: 'thumbnail' %>
  <%= link_to "remove", "#", class: 'remove btn btn-primary', data: { id: photo.id, url: photo_path(photo) } %>
</div>

另一种选择是使用单独的jQuery.ajax()来重写remote: true

$('.btn.remove').click(function () {
  var $target = $(this).parents('#test_' + $(this).data('id'));

  $.ajax({
    url: $(this).data('url'),
    method: 'DELETE',
    beforeSend: function() {
      $target.hide() # hiding corresponding image
    },
    error: function () {
      $target.show() # revert hiding on error
      console.log("Sorry! Couldn't remove image.") # log message
    }
  })
})

答案 1 :(得分:0)

如果没有js.erb模板,有一种更简洁的方法:

<div class="photo">
  <%= image_tag photo.image.thumb, class: 'thumbnail'%>
  <%= link_to "remove", photo_path(photo),class: 'destroy btn btn-primary', method: :delete, data: { remote: true, type: 'json', confirm: 'Are you sure?' } %>
<div>

现在只需设置一个ajax处理程序:

// app/assets/javascripts/photos.js
$(document).on('ajax:success', '.photo .destroy.btn', function(){
  $(this).parent('.photo').remove();
});

并将控制器设置为返回正确的响应代码。

class PhotosController
  def destroy
    @photo = Photo.find(params[:id])
    @photo.destroy!

    respond_to do |format|
      format.json do
        head :no_content
      end
    end
  end
end

这使您的客户端逻辑保持在app/assets/javascripts,可以缓存和缩小,而不是在一堆美化的脚本标签中传播它。