作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在views.py
中有一种可以下载文件的方法
我是通过HttpResponse['Content-Disposition']
构建的
附件:
response = HttpResponse(content_type='text/json')
response['Content-Disposition'] = 'attachment; filename="%s"' % (dgjf)
response.write(dgjson)
response
,这可以正常工作
confirmMsg = render(request,'confirmation.html',context)
最佳答案
您需要先重定向到“确认后确认”页面,然后再强制下载。您的后页将显示类似“您的下载应自动开始,如果没有单击则..等”之类的内容。
在下一页中,您可以通过Javascript,http-refresh或iframe启动下载。
Javascript,在您的页面后模板中插入:
<script>location.href="download/url/here";</script>
response = render_to_response(...)
response['Refresh'] = "0;url=/download/url/here"
return response
<meta http-equiv="Refresh" content="0;url=/download/url/here">
<iframe src="/download/url/here" style="width:0;height:0"></iframe>
关于django - 如何让django同时返回HttpResponse和呈现不同的模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43688011/
我是一名优秀的程序员,十分优秀!