web-dev-qa-db-ja.com

プログラムで開始していないときにDropzone processQueue()を実行するにはどうすればよいですか?

次のようなフォームにクラスを追加して、dropzoneを開始しようとしています。

<form class="dropzone ng-pristine ng-valid dz-clickable" id="photoDropzoneDiv" action="/panel/vehicles/3/photos" accept-charset="UTF-8" method="post">

ドロップゾーンが機能するようになりました。次に、キューを自動処理しないようにdropzoneを設定します。

Dropzone.options.photoDropzone = {
    paramName: "file", // The name that will be used to transfer the file
    maxFilesize: 5, // MB
    autoProcessQueue: false,
    parallelUploads: 500,
    acceptedFiles: '.jpg,.jpeg,.JPEG,.JPG,.png,.PNG',
    addRemoveLinks: true,
    init: function(file, done) {
        this.on("queuecomplete", function(file) {
            this.removeAllFiles();
        });
    }
};

今、私はこのようにprocessQueueを呼び出すとき:

photoDropzone.processQueue();

Uncaught TypeError: photoDropzone.processQueue is not a function。どうすれば修正できますか?

12
THpubs
Dropzone.options.addFiles = {
    maxFileSize : 4,
    parallelUploads : 10,
    uploadMultiple: true,
        autoProcessQueue : false,
    addRemoveLinks : true,
    init: function() {
        var submitButton = document.querySelector("#act-on-upload")
        myDropzone = this;
        submitButton.addEventListener("click", function() {
            myDropzone.processQueue(); 
        });
        myDropzone.on("addedfile", function(file) {
            if (!file.type.match(/image.*/)) {
                if(file.type.match(/application.Zip/)){
                    myDropzone.emit("thumbnail", file, "path/to/img");
                } else {
                    myDropzone.emit("thumbnail", file, "path/to/img");
                }
            }
        });
        myDropzone.on("complete", function(file) {
            myDropzone.removeFile(file);
        });
    },
};
21
user1709694

これはここで働いた:)

$('#submit').click(function() {
    var myDropzone = Dropzone.forElement(".dropzone");
    myDropzone.processQueue();
});
26
Alex B. Santos