IE9下载导出PDF图片解决方案

185 阅读1分钟

起因:ie9不支持blob方案下载导出PDF

解决方案:构建隐藏iframe进行下载和导出

    if (isIE9) {
      const fileHref = http://*****;
      const iframe = document.createElement('iframe');
      iframe.style.display = 'none';
      iframe.src = fileHref;
      iframe.onload = function() {
        document.body.removeChild(iframe);
      };
    }