Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Django 的服务器端代码中,我在服务器上下载一组文件并创建一个存档,然后将其发送到客户端进行下载。客户端下载完成或中止后,有没有办法自动删除此存档?
谢谢你
在这种情况下,我通常使用 HttpResponse 将归档文件返回给用户,并将内容类型设置为“附件”。这样下载会自动开始,我不必保存存档文件。这种方法对您有帮助吗?