3

我只是像这样使用我的代码

Dropzone.options.attachkyc = {
            maxFiles: 1,
            accept: function(file, done) {
            console.log("uploaded");
            done();
            },
            init: function() {
                this.on("maxfilesexceeded", function(file){
                    alert("No more files please!");
                });
            },
            addRemoveLinks: true,
            removedfile: function(file) {
                var name = file.name;        
                $.ajax({
                    type: 'POST',
                    url: host+'upload/unfile',
                    data: "id="+name,
                    dataType: 'html'
                });
                var _ref;
                return (_ref = file.previewElement) != null ? _ref.parentNode.removeChild(file.previewElement) : void 0;   

                //console.log();
            }
        };

当我上传第二个文件时显示警报“请不要再有文件!”,工作正常的文件没有上传,但我的问题是,我添加的第二个文件仍然显示在我的 dropzone 上。我的问题是如何在显示警报后自动删除第二个文件?

4

2 回答 2

5

如果你想删除最大文件扩展文件,你只需要使用maxfilesexceededdropzone 的方法

    init: function() {
         myDropzone.on("maxfilesexceeded", function (file) {
                this.removeFile(file);
            });
    },

或者您也可以使用另一种方法

  init: function() {
  myDropzone.on("addedfile", function (file) {

                if (myDropzone.files.length === 1) {
                    alert("You can Select upto 1 Pictures for Venue Profile.", "error");
                    this.removeFile(file);
                }

            });
 },
于 2017-09-22T12:21:11.347 回答
1

我终于解决了我的问题。在

 init: function() {
            this.on("maxfilesexceeded", function(file){
                alert("No more files please!");
            });
        },

我把它改成这样

init: function() {
            this.on("maxfilesexceeded", function(file){
                alert("No more files please!");
                this.removeFile(file);
            });
        },

是我想要的完美工作。

于 2017-09-15T02:47:25.983 回答