Chunked upload with xhr

Is it possible to upload data as chunks with XHRUpload? An example would be great.

I think what you are looking for is tus, did you check that out?

Tus has it’s own protocol and I can’t combine it with xhr. Or can I?

Right but tus-js-client works via xhr, so any reason you need a custom protocol vs picking one from off the shelve that’s seen a lot of usage/improvements?

I am not going for a custom protocol. I have a Django backend but I am not sure if I can use tus-js with the one you guys have? Because with XHR it’s straight forward, just POST data to a URL and I am not use with tus.

If you just want an Xhr, you should use the Xhr plugin. That does what you describe.

If you want chunks, like you said earlier, for resumability or parallel/faster uploads, you’ll need to layer some protocol on top of Xhr that the server side understands. You can do this from scratch or use tus.io. There are python implementations that can handle tus uploads, see https://tus.io/implementations.html (flash & django).

Does that help?