23 / resumable.js

A JavaScript library for providing multiple simultaneous, stable, fault-tolerant and resumable/restartable uploads via the HTML5 File API.
MIT License
4.65k stars 612 forks source link

Multiple file upload, how to get each upload status? #439

Open kuangYIN1217 opened 6 years ago

kuangYIN1217 commented 6 years ago

Upload multiple files at the same time. How to determine the progress of each file and whether each file is uploaded successfully? Can you only obtain the upload status of a specific file?

steffentchr commented 6 years ago

Use .progress() and fileProgress(file) respectively.

kuangYIN1217 commented 6 years ago

I want to upload 3 files at the same time and initialize 3 instances, but when I get the progress of each file, I can only get the progress of the first instance. I want to get each progress.