dropzone-при отправке пусто и с ошибкой проверки - PullRequest
0 голосов
/ 21 ноября 2018

Я слишком много раз искал эту проблему, но ничего не нашел, это моя зона сброса, когда я отправляю дропзону с загруженными файлами (не пустыми). Я могу получить ответ в this.on('error') или в this.on('success'), это моя капля:

Dropzone.options.articleForm = {
    uploadMultiple: true,
    autoProcessQueue: false,
    parallelUploads: 10000,
    acceptedFiles: ".jpeg,.jpg,.png,.gif,.mp4,.mkv,.avi",
    init: function () {
        let submitButton = document.querySelector("#subminButton");
        articleForm = this;
        $(submitButton).on('click', function (e) {

            if (articleForm.getQueuedFiles().length < 1) {
                articleForm.uploadFiles([]);

            } else {
                e.preventDefault();
                articleForm.processQueue();
            }
        });

        this.on('error', function (file, response) {
            debugger;
        });

        this.on("success", function (file) {
            debugger;

        });
        //--------------- when send with file send these data too ----
        this.on("sending", function (file, xhr, formData) {
            debugger;

        });
        //--------------- when send empty file send these data too ---
        this.on("sendingmultiple", function (data, xhr, formData) {
            debugger;

        });
    }
}

Моя проблема в том, что при отправке dropzone пустой и с подтверждением ошибки, где я могу увидеть ответ?

...