我有以下服务调用来从服务器下载文件。我目前拥有它,以便PDF将在新的选项卡/窗口中打开,并且将下载任何其他文档类型。
我现在遇到的问题是弹出窗口阻止程序阻止了PDF。有没有办法解决这个问题?
return formService.getForm(params)
.$promise
.then(response => {
var blob = new Blob([response.data], {
type: response.responseType
});
var fileUrl = (window.URL || window.webkitURL).createObjectURL(blob);
if (response.responseType === 'application/pdf') {
window.open(fileUrl);
} else {
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none"
a.href = fileUrl;
a.download = formName;
a.target = "_blank";
a.click();
window.URL.revokeObjectURL(fileUrl);
}
})
.catch(error => {
console.error(`Error downloading form '${formName}' `, error);
});
答案 0 :(得分:7)
我通过另一个堆栈溢出帖找到了我的问题的答案。
window.open popup getting blocked during click event
基本上,我在拨打服务电话之前拨打var newWindow = window.open();
,然后在成功回拨中拨打newWindow.location = fileUrl
。