Skip to content
Advertisement

How can I download a file using window.fetch?

If I want to download a file, what should I do in the then block below?

JavaScript

Note: The code is on the client-side.

Advertisement

Answer

I temporarily solve this problem by using download.js and blob.

JavaScript

It’s working for small files, but maybe not working for large files. I think I should dig Stream more.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement