使用 Django 进行动态文件下载
在 Web 应用程序中,通常需要允许用户下载文件。但是,您可能希望隐藏文件路径以防止直接访问。使用 Django,您可以提供带有隐藏路径的可下载文件。
问题:
用户想要创建一个类似 http://example.com/download 的 URL /?f=somefile.txt ,当访问时,提供位于 /home/user/files/somefile.txt 的文件,而不将其显示在
答案:
要实现此目的,您可以结合使用 HttpResponse 类和 xsendfile 模块。 HttpResponse 生成文件的路径或文件本身,而 xsendfile 处理实际的文件服务。
以下是演示集成的示例代码片段:
from django.utils.encoding import smart_str from django.http import HttpResponse response = HttpResponse(content_type='application/force-download') response['Content-Disposition'] = 'attachment; filename=%s' % smart_str(file_name) response['X-Sendfile'] = smart_str(path_to_file) return response
此解决方案要求您控制您的服务器或确保设置了 mod_xsendfile (对于 Apache)或 X-Accel-Redirect (对于 nginx)
Django 1.7 更新:
代码中的 mimetype 属性应替换为 content_type。
以上是如何在 Django 中提供具有隐藏路径的可下载文件?的详细内容。更多信息请关注PHP中文网其他相关文章!