如何使用内容处置强制文件下载到硬盘?
我想强制浏览器下载 pdf
文件。
我正在使用以下代码:
<a href="../doc/quot.pdf" target=_blank>Click here to Download quotation</a>
它使浏览器在新窗口中打开pdf,但我希望当用户单击它时将其下载到硬盘驱动器。
我发现 Content-disposition
用于此目的,但在我的情况下如何使用它?
I want to force the browser to download a pdf
file.
I am using the following code :
<a href="../doc/quot.pdf" target=_blank>Click here to Download quotation</a>
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.
I found that Content-disposition
is used for this, but how do I use it in my case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在返回 PDF 文件的 HTTP 响应上,确保内容处置标头如下所示:
请参阅 content-disposition 维基百科 MIME 页面上。
On the HTTP Response where you are returning the PDF file, ensure the content disposition header looks like:
See content-disposition on the wikipedia MIME page.
对于最新的浏览器,您还可以使用 HTML5 下载属性:
除了 MSIE11 之外,大多数最新的浏览器都支持它。您可以使用polyfill,如下所示(请注意,这仅适用于数据uri,但这是一个好的开始):
With recent browsers you can use the HTML5 download attribute as well:
It is supported by most of the recent browsers except MSIE11. You can use a polyfill, something like this (note that this is for data uri only, but it is a good start):