vue-dropzone
vue-dropzone copied to clipboard
progressbar fluctuation issue
How can i avoid fluctuation in progress bar during upload a big file
This is actualy the desired functionality, the progress you are receiving is of the chunk being send. What you could do is the following
dropzone.on("uploadprogress", function(file, progress, bytesSent) { progress = bytesSent / file.size \* 100; $('.dz-upload').width(progress + "%"); });
https://gitlab.com/meno/dropzone/-/issues/54