Is there a way to get a progress bar for the status of uploads to the server.
yes, there's a callback to the create file method. However, the progress is only in 5MB chunks
something is better then nothing
is there any specific way that I should submit the file to get progress
no
How do i check the chunks uploaded as it progresses
Got it thank you!
const uploadPromise = storage.createFile( getlinkedData.documents[0].bucketId, ID.unique(), draggedFiles[0], [], (progress) => { console.log(progress.progress) uploadProgress.set(progress.progress) // Update the Svelte store }
This is the ending code I got to make it work with JS. I am using SveltekIt
[Solved] Progress Bar for storage uploads
Recommended threads
- SSL certificate issuance failed:
Domain verifies but SSL cert fails, tried different subdomains like .api and .aw, used cname and CAA, no prior CAA existed on website, tried Multiple CAAs at on...
- Password check in function
Hi, is there any way now for checking if the users password is correct in a function? I am creating a delete user function and before deleting I would like to c...
- Deployment fails after 15+ minutes: "Wai...
Hi, I'm Jayden. My email is jaydthom@haverford.org, and i'm having persistent deployment failures with my Next.js project. What happens: Push to GitHub trigg...