Skip to content
Advertisement

How to download zip file coming as django response through ajax post request?

so, after my ajax post request my Django view return a zip file as a response. I want to download that zip file as soon as the response came. But I don’t know what to do. I go through many answers but not worked for me. Right now zip file downloading but when I open it’s corrupted. My Django response zip file type is <class ‘_io.BufferedReader’>.

Ajax Code of Post request

JavaScript

ajax Response

enter image description here

Django View

JavaScript

After zipping download when I open my zip file it comes with an error **An error occurred while loading the archive. *

error while opening zip file enter image description here

Advertisement

Answer

If you want to download a (binary) file with jQuery.ajax you have to use the xhrFields to set a binary responseType

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