vue-dropzone icon indicating copy to clipboard operation
vue-dropzone copied to clipboard

progressbar fluctuation issue

Open meghani93 opened this issue 4 years ago • 1 comments

How can i avoid fluctuation in progress bar during upload a big file

meghani93 avatar Apr 11 '20 12:04 meghani93

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

ao-jhelmich avatar May 24 '20 16:05 ao-jhelmich