简体   繁体   中英

Dropzone - How to remove files?

how can I remove the uploaded files and previewed thumbnails? That´s my code. The alert works, but the thumbs are not hiding.

        new Dropzone("form#galerie", {
                url: "/business/kleinanzeigen/upload",
                maxFilesize: 5,
                maxFiles: 10,
                acceptedFiles: '.png, .gif, .jpg',
                complete: function (success) {
                    vm.form.galerie.push(JSON.parse(success.xhr.response))
                },
                addRemoveLinks: true,
                removedfile: function (file) {
                    //console.log(file);
                    alert('works');
                    this.removeFile(file);
                }
            }
        );

Your removedFile function doesn't seem right. It should be something like this:

removedfile: function(f) {
var reference;
return (reference = f.previewElement) != null ? reference.parentNode.removeChild(f.previewElement) : void 0;

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM