Go to another page after files have completed uplo

2019-09-03 15:48发布

问题:

<form action="jay-upload.php"
  class="dropzone"
  id="my-awesome-dropzone"></form>

<script>
    Dropzone.options.myDropzone = {
    init: function() {
    this.on("success", function() {
    window.location.href = "http://example.com/new_url";
                                   });
                             }
                      };
    </script>

I am trying to do it like this but its not working. :(

回答1:

You can try this code, it may work for you.

this.on("success", function() {
     if (this.getUploadingFiles().length === 0 && this.getQueuedFiles().length === 0) {
    window.location.href = 'http://example.com/new_url';
  }