本文介绍了如何使用 Content-disposition 强制将文件下载到硬盘驱动器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想强制浏览器下载一个 pdf
文件.
I want to force the browser to download a pdf
file.
我正在使用以下代码:
<a href="../doc/quot.pdf" target=_blank>Click here to Download quotation</a>
它使浏览器在新窗口中打开 pdf,但我希望它在用户单击时下载到硬盘驱动器.
It makes the browser open the pdf in a new window, but I want it to download to the hard drive when a user clicks it.
我发现 Content-disposition
用于此目的,但在我的情况下如何使用它?
I found that Content-disposition
is used for this, but how do I use it in my case?
推荐答案
在您返回 PDF 文件的 HTTP 响应上,确保内容处置标头如下所示:
On the HTTP Response where you are returning the PDF file, ensure the content disposition header looks like:
Content-Disposition: attachment; filename=quot.pdf;
请参阅维基百科 MIME 页面上的content-disposition.
See content-disposition on the wikipedia MIME page.
这篇关于如何使用 Content-disposition 强制将文件下载到硬盘驱动器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!