2

ページでドロップゾーンを使用して画像をアップロードしていますが、何らかの理由でオプション「autoProcessQueue」が選択されていません

この正確なコードをページに貼り付けましたが、このチュートリアルから画像を選択するとすぐにアップロードされます: https://github.com/enyo/dropzone/wiki/Upload-all-files-with-a-button

Dropzone.options.myDropzone = {

  // Prevents Dropzone from uploading dropped files immediately
  autoProcessQueue: false,

  init: function() {
    var submitButton = document.querySelector("#submit-all")
        myDropzone = this; // closure

    submitButton.addEventListener("click", function() {
      myDropzone.processQueue(); // Tell Dropzone to process all queued files.
    });

    // You might want to show the submit button only when 
    // files are dropped here:
    this.on("addedfile", function() {
      // Show submit button here and/or inform user to click it.
    });

  }
};
4

2 に答える 2

0

同じ問題があり、古いバージョンの Dropzone を使用していたことが判明しました。このautoProcessQueue機能は v3.6.0 でのみ追加されたため、少なくともそれを使用するようにしてください。

于 2013-11-22T17:55:36.980 に答える