作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试保存在 iFrame 中加载的 pdf 文件。默认情况下,iFrame 中有一个按钮可以保存文件,但我想要一个额外的按钮(在 iFrame 之外)来保存文件。
<iframe id="labelFrame" src="loadedFile.pdf"></iframe>
<button id="savePDF">Download File</button>
$('#savePDF').click(function(){
var save = document.getElementById('labelFrame');
//Save the file by opening the explorer for the user to select the place to save or save the file in a default location, how do I do this?
}
最佳答案
我也需要这个问题的答案并找到了解决方案。
在 IFrame 中显示 PDF 时,浏览器将在 <embed>
中呈现它元素,据我所知,我们不能在 javascript 中使用它。
我们需要使用 XMLHttpRequest
从服务器获取 PDF 作为 Blob
对象只有这样我们才能显示它并使用javascript保存它。
var iframe = document.getElementById('labelFrame'),
saveBtn = document.getElementById('savePDF'),
pdfUrl = 'loadedFile.pdf';
var xhr = new XMLHttpRequest();
xhr.open("GET", pdfUrl);
xhr.responseType = 'blob'; // <- important (but since IE10)
xhr.onload = function() {
var blobUrl = URL.createObjectURL(xhr.response); // <- used for display + download
iframe.src = blobUrl
saveBtn.onclick = function() {
downloadBlob(blobUrl, 'myFilename.pdf');
}
};
xhr.send();
xhr.onload
函数将设置为
src
的 iframe 并添加
onclick
保存按钮的处理程序
downloadBlob()
我在示例中使用的函数
function downloadBlob(blobUrl, filename) {
var a = document.createElement('a');
a.href = blobUrl;
a.target = '_parent';
// Use a.download if available. This increases the likelihood that
// the file is downloaded instead of opened by another PDF plugin.
if ('download' in a) {
a.download = filename;
}
// <a> must be in the document for IE and recent Firefox versions,
// otherwise .click() is ignored.
(document.body || document.documentElement).appendChild(a);
a.click();
a.remove();
}
关于file - 保存在 iframe 中加载的 PDF 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31270145/
我是一名优秀的程序员,十分优秀!