如何在dropzone插件中添加removefile选项?

时间:2015-11-16 05:18:18

标签: javascript php jquery mysql

我使用了dropzone.js(http://www.dropzonejs.com/)。我想添加删除按钮来删除图像。但我得到javascript undefined错误

 <script>
  Dropzone.options.myDropzone = {
init: function() {
 addRemoveLinks: true,  
thisDropzone = this;
 $.get('photo-add.php', function(data) {
 $.each(data, function(key,value){
var mockFile = { name: value.name, size: value.size };
  thisDropzone.options.addedfile.call(thisDropzone, mockFile);
 thisDropzone.options.thumbnail.call(thisDropzone, mockFile,      "upload/"+value.name);

});
 });

 this.on("removedfile", function(file) {
alert(file.name);
console.log(file);
     // Create the remove button
  var removeButton = Dropzone.createElement("<button>Remove file</button>");

 /    / Capture the Dropzone instance as closure.
  var _this = this;

 // Listen to the click event
 removeButton.addEventListener();

   // Add the button to the file preview element.
  file.previewElement.appendChild(removeButton);
    });
  }
  };
     </script>

6 个答案:

答案 0 :(得分:18)

我认为您没有以适当的方式配置dropzone

init: function() {
 addRemoveLinks: true, 

上述代码无效。

像这样使用

Dropzone.options.myAwesomeDropzone = {
  addRemoveLinks: true,
  init: function() {

  }

  ...

};

或者您也可以使用this.addRemoveLinks = true

如果您想处理删除文件的事件,可以像这样使用

removedfile: function(file) {
    x = confirm('Do you want to delete?');
    if(!x)  return false;
}

处理服务器端文件的删除。

关于dropzone的成功方法将文件名推送到数组,例如:file_up_names=[];

 success:function(file){
   file_up_names.push(file.name);

现在在删除时获取名称并将其传递给php页面以删除文件。

 removedfile: function(file) {

    x = confirm('Do you want to delete?');
    if(!x)  return false;
    for(var i=0;i<file_up_names.length;++i){

      if(file_up_names[i]==file.name) {

        $.post('delete_file.php', 
             {file_name:file_up_names[i]},
           function(data,status){
             alert('file deleted');
             });
       }
    }
 }

另请注意,如果您更改了服务器端的文件名,则必须返回要删除的文件名。

答案 1 :(得分:3)

尝试以下代码:

Dropzone.autoDiscover = false;
var acceptedFileTypes = "image/*"; //dropzone requires this param be a comma separated list
var fileList = new Array;
var i = 0;
$("#dropzone").dropzone({
    addRemoveLinks: true,
    maxFiles: 10, //change limit as per your requirements
    dictMaxFilesExceeded: "Maximum upload limit reached",
    acceptedFiles: acceptedFileTypes,
    dictInvalidFileType: "upload only JPG/PNG",
    init: function () {

        // Hack: Add the dropzone class to the element
        $(this.element).addClass("dropzone");

        this.on("success", function (file, serverFileName) {
            fileList[i] = {
                "serverFileName": serverFileName,
                "fileName": file.name,
                "fileId": i
            };
            $('.dz-message').show();
            i += 1;
        });
        this.on("removedfile", function (file) {
            var rmvFile = "";
            for (var f = 0; f < fileList.length; f++) {
                if (fileList[f].fileName == file.name) {
                    rmvFile = fileList[f].serverFileName;
                }
            }

            if (rmvFile) {
                $.ajax({
                    url: path, //your php file path to remove specified image
                    type: "POST",
                    data: {
                        filenamenew: rmvFile,
                        type: 'delete',
                    },
                });
            }
        });

    }
});

答案 2 :(得分:2)

&#34;你的每一个活动&#34;例如:成功 - 错误 - 发送 - 已删除文件或已添加文件等

http://www.dropzonejs.com/#event-list

init : function () {
    self.on('Every your events', function (file, response) {
        this.removeFile(file);
    }
}

从此函数中删除文件可以执行此操作:

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

答案 3 :(得分:1)

我遇到了同样的问题。我认为Dhaval的答案会有所帮助,但我从文档中找到了一种更清晰的方法。

来自文档:

  

如果您想要一些特定链接来删除文件(而不是内置文件)   在addRemoveLinks config中,你可以简单地插入元素   带有data-dz-remove属性的模板。例如:

<img src="removebutton.png" alt="Click me to remove the file."
> data-dz-remove />

我在预览模板中的按钮上测试了这个相同的属性,并根据需要运行。

答案 4 :(得分:0)

服务器端

uploadFile

  

保存文件,如果您决定在数据库中存储文件信息,   echo数据库表文件ID或者您决定将文件存储在磁盘上   只有,回显文件的新名称。

removeFile

  

删除从POST var $ _POST [&#34; fid&#34;]收到的ID或名称的文件或   并在其上指定名称。

Javascript JQuery

{{1}}

答案 5 :(得分:0)

尝试以下代码:

Dropzone.autoDiscover = false;

  var dropzone = new Dropzone ("#mydropzone", {
    maxFilesize: 256, // Set the maximum file size to 256 MB
    paramName: "document[attachment]", // Rails expects the file upload to be something like model[field_name]
    autoProcessQueue: false,
    addRemoveLinks: true // Don't show remove links on dropzone itself.
  });

  dropzone.on("removedfile", function(file){
    alert('remove triggered');
  });

  dropzone.on("addedfile", function(file){
    alert('add triggered');
  });

  dropzone.on("success", function(file){
    alert('success triggered');
  });