Thanks man, but problem is not in Library,
that reason is work on web level, so its need to change api settings to return progress percent, but i don know where is it !
i found problem, but i dont know why !
i create PWA app, so i need offline work, requests handle by workbox, when deactivate workbox, progress again work
@vgraphr You’re only going to get “upload progress” if you actually hit an API endpoint that returns multiple models from which progress can be calculated. A single HTTP request isn’t going to return this information. You make the request, the request then returns a response.
Upload progress is usually found in libraries and APIs that upload files using chunks. This is because each chunk of a file is uploaded using a separate HTTP request. If you have an API that uploads files in 1MB chunks and you use a library to upload a 100MB file, then this will issue 100 HTTP requests, and the library can calculate that for each successful HTTP request, it has uploaded 1% of the file and can report upload progress accordingly. This is how the AWS JavaScript SDK works, for example.