FileWrapper を使用して大きなファイルをダウンロードしていますが、1 回の応答で複数のファイルをダウンロードする方法がわかりません。他にどのような方法を使用できますか?
try:
mms = message.objects.get(token=token)
except message.DoesNotExist:
return HttpResponse('ret=1&msg=Invalid arguments&')
try:
attach = mms.message_attach_set.get(id = int(attach_id))
except message_attach.DoesNotExist:
return HttpResponse('ret=1&msg=Invalid arguments&')
response = HttpResponse(FileWrapper(attach.file), mimetype='application/force-download')
response['Content-Length'] = str(attach.file.size)
response['X-Sendfile'] = '%s' % (attach.realName)
return response