0
DropZoneのすべてのファイル(ロード済み、キャンセル済み、処理中など)のリストを取得するにはどうすればよいですか?フォームを提出する前に、このデータを解析して隠れた入力フィールドを生成します。アイブ氏は、このフォームファイルのDropzoneリスト
this.list = {}; //this is not inside the event if this would be inside the list has max one item so you have to do that as a normal var in your js
// response text is a hashed filename so its unique you also can use a normal array and push it
this.list[file.xhr.responseText] = file.name
しかし、あなたはまた、持っている中で、リストを作成した作成した完全なイベントで
:IVEはそこに自分のリストを追加しましたので、私が過去にあまりにもこの問題を得た
私は、 'console.log(Dropzone.instances [0] .files);'が正しいデータを返すことを発見しました。しかし、私は奇妙な 'instanes [0]'ではなく、特定のdropzone_idで同じデータを取得するにはどうしたらいいですか? – GHopper