How to get server response from DropzoneJs for chunk uploads
After much struggling, here’s the magical formula we got for getting the server response back for chunck uploads: var myDropzone = new Dropzone(document.body, { // Make the whole body a dropzone thumbnailWidth: 80, thumbnailHeight: 80, parallelUploads: 20, previewTemplate: previewTemplate, autoQueue: false, // Make sure the files aren’t queued until manually added previewsContainer: “#previews”, // Define …
How to get server response from DropzoneJs for chunk uploads Read More »