How to Skip Already Uploaded Chunks in Dropzone.js Before Sending to Server?
I am using Dropzone.js to handle file uploads with chunking enabled. I want to implement a mechanism to skip uploading chunks that have already been successfully sent to the server. Currently, my upload API (http://localhost:7254/api/UploadChunk) is being called for all chunks, including those already uploaded, which is unnecessary.
How to Skip Already Uploaded Chunks in Dropzone.js Before Sending to Server?
I am using Dropzone.js to handle file uploads with chunking enabled. I want to implement a mechanism to skip uploading chunks that have already been successfully sent to the server. Currently, my upload API (http://localhost:7254/api/UploadChunk) is being called for all chunks, including those already uploaded, which is unnecessary.