window.open下载被拦截, 记录一下

664 阅读1分钟

最近做下载文件时直接window.open调用时,被浏览器拦截了,无法下载 换iframe 完美解决

代码如下

// url 要下载的文件路径
function downFileByIframe(url){
      let iframe = document.createElement('iframe');
      iframe.src = url;
      iframe.style.display = 'none';
      iframe.style.height = 0;
      document.body.appendChild(iframe);
      setTimeout(() => {
        iframe.remove();
      }, 20000);//延时20s移除iframe
    }