为了账号安全,请及时绑定邮箱和手机立即绑定

django多文件下载

django多文件下载

牛魔王的故事 2021-03-17 08:13:57
我的英语不好,因为我来自台湾,所以我将尽力描述我的问题。我正在使用FileWrapper下载大文件,但我不知道如何在单个响应中下载多个文件。我还能使用什么其他方法?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
查看完整描述

1 回答

?
米琪卡哇伊

TA贡献1998条经验 获得超6个赞

一种方法是创建一个tarfile存档并将文件作为一个包发送。python api在这里


查看完整回答
反对 回复 2021-03-30
  • 1 回答
  • 0 关注
  • 307 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信