How to change url dropzone? URL dynamically with ajax success

前端 未结 5 1589
青春惊慌失措
青春惊慌失措 2021-01-04 12:35

I read this: https://github.com/enyo/dropzone/wiki/Set-URL-dynamically but i dont got success... :( I have 1 form...

And i send the inputs with ajax.

The aj

5条回答
  •  无人及你
    2021-01-04 12:55

    Another way that worked for me (accept event callback):

    $('div#dropzone').dropzone({
        options...,
        accept: function (file, done) {
            this.options.url = 'the url you want';
        }
    });
    

提交回复
热议问题