vue中如何批量下载文件
一开始 用的是 window.open() 方法弃用的原因想必大家都知道 就是体感很差浏览器会拦截住后来选择了使用iframe 相比 window,open() 方法 稍强一些this.picData.forEach(item=>{if(item.isChecked){const iframe = document.createElement("iframe");iframe.style.d
·
一开始 用的是 window.open() 方法
弃用的原因想必大家都知道 就是体感很差 浏览器会拦截住
后来选择了使用iframe 相比 window,open() 方法 稍强一些
this.picData.forEach(item=>{
if(item.isChecked){
const iframe = document.createElement("iframe");
iframe.style.display = "none";
iframe.style.height = 0;
iframe.src = item.url;
document.body.appendChild(iframe);
// 1s之后删除
setTimeout(()=>{
iframe.remove();
},1000);
}
})
更多推荐
已为社区贡献2条内容
所有评论(0)