兼容国产机,火狐、奇安信浏览器的exl导出

      // 创建Blob对象,设置文件类型
      let blob = new Blob([res.data], {
        type: "application/vnd.ms-excel"
      })
      const aLink = document.createElement('a');
      document.body.appendChild(aLink);
      aLink.style.display = 'none';
      const objectUrl = window.URL.createObjectURL(blob);
      aLink.href = objectUrl;
      aLink.download = obj.fileName;  //自定义文件名
      aLink.click();  //下载文件
      document.body.removeChild(aLink); //针对火狐

 

posted @ 2021-06-16 10:46  <_/>  阅读(196)  评论(0编辑  收藏  举报