15

我正在使用http://www.dropzonejs.com/ (dropzone.js) 库。我已将我的表单元素之一初始化为,

   var drop = $("#upload").dropzone({
                uploadMultiple: "true",
                addRemoveLinks: "true",
                thumbnailWidth: "250",
                thumbnailHeight: "250",
                maxFilesize: "10",
                headers: {
                    "title": titles,
                    "location": locations,
                    "tag": tags
                    }                   
            });

现在,当用户单击一个<button id="close"></button>按钮时,我想使用该drop.removeAllFiles(true)功能清空整个列表,如 Dropzone.js 官方网站上所建议的那样。

所以,我尝试使用

 $("#close").click(function(){
      drop.removeAllFiles(true);
   });

但它不起作用,console.log我收到错误消息removeAllFiles() is not declared for drop

我哪里错了?

4

5 回答 5

57

这对我有用。

Dropzone.forElement("#YourDropBoxId").removeAllFiles(true);

参考:https ://github.com/enyo/dropzone/issues/180

于 2015-05-22T16:37:36.697 回答
11

这是代码,它将解决您的问题。

$(function() {
            Dropzone.options.myAwesomeDropzone = { 
            init: function () {
                var myDropZone = this;
                $("#btnRemoveAll").click(function () {
                            myDropZone.removeAllFiles();
                        }
                );
            }

        };
 });
于 2013-09-06T06:12:07.433 回答
4

drop引用的是 jQuery 对象而不是 Dropzone 对象。

var drop = $("#upload").dropzone(options);

有时需要将jQuery(selector [,context])与 dropzone 一起使用。所以非jquery的构造函数就没有那么方便了。

var drop = new Dropzone(selector, options);

相反,您可以使用(丑陋的)获取 Dropzone 对象:

var drop = $("#upload").dropzone(options).get(0).dropzone;

$("#close").click(function(){
    drop.removeAllFiles(true);
});
于 2015-02-02T21:22:32.127 回答
1

这是工作......请试试这个。

$("#close").click(function(){
    drop.removeAllFiles(true);
});
$("#upload").dropzone({
            uploadMultiple: "true",
            addRemoveLinks: "true",
            thumbnailWidth: "250",
            thumbnailHeight: "250",
            maxFilesize: "10",
            headers: {
                "title": titles,
                "location": locations,
                "tag": tags
                },
            init: function () {
       var dropzone = this;
       $("#close").click(function(){
  dropzone.removeAllFiles(true);
});
    }


        });
于 2015-09-15T09:42:37.850 回答
0

尝试这个。这还包括对服务器的 JSON 调用以删除文件。

mydropzone = new Dropzone("#mydropzone",{
    url: "/dropzone",
    addRemoveLinks : true,
    maxFilesize: 2.0,
    dictResponseError: 'Error uploading file!',
    removedfile: function(file) {
        var name = {file: file.name}
        $.ajax({
            type: 'POST',
            url: '/dropzone_delete',
            contentType: 'application/json',
            data: JSON.stringify(name),
            dataType: 'json',
            success: function (e) {console.log(e);}
        });
        var _ref;
        return (_ref = file.previewElement) != null ? _ref.parentNode.removeChild(file.previewElement) : void 0;
    }   
});

// Clear all files
$("#btn_clear_dropzone").click(function () {
    // Delete existing files
    mydropzone.removeAllFiles();
    // Cancel current uploads
    mydropzone.removeAllFiles(true);
});

如果人们有进一步完善此代码的建议,请告诉我。

于 2014-08-20T22:23:32.963 回答