ajax を使用して django 関数にリクエストを送信し、django 関数が zip ファイルを生成してユーザーに提供しています。URLdomain.com/django/builder/zipit/
にアクセスすると、ファイルが期待どおりに生成され、コンピューターにダウンロードされますが、ajaxを使用して応答が返されると、ajaxはダウンロードできません。応答を php 変数に渡してダウンロードすることはできますか? ファイルが動的に作成されるため、iframe の使用は機能しません。
アヤックス
$.ajax({
type: 'POST',
url: '/django/builder/zipit/',
data: serialize,
success: function(response){
//pass response to php somehow
}
ビュー.py
def send_zipfile(request):
temp = tempfile.TemporaryFile()
archive = zipfile.ZipFile(temp, 'w', zipfile.ZIP_DEFLATED)
filename = '/home/dbs/public_html/download/video.html'
archive.write(filename, 'file.html')
archive.close()
wrapper = FileWrapper(temp)
response = HttpResponse(wrapper, content_type='application/zip', mimetype='application/x-download')
response['Content-Disposition'] = 'attachment; filename=dbs_content.zip'
response['Content-Length'] = temp.tell()
temp.seek(0)
return response