美文网首页
下载流文件

下载流文件

作者: 樾下上葵 | 来源:发表于2019-12-14 15:24 被阅读0次
async download(row){
        this.currentRow=row;
        // 查询文件id
        const res=await this.getFileIdById(row.id);
        if(res.data.code==1){
          const file=await this.downloadFile(res.data.data[0].id);
          // 下载文件流
          if(file.data){
            const blob = file.data;
            const filename = res.data.data[0].name;
            if(window.navigator.msSaveOrOpenBlob){
              // ie,直接调用msSaveBlob方法
              navigator.msSaveBlob(blob, filename);
            }else{
              // 非ie
              const reader = new FileReader();
              reader.readAsDataURL(blob);
              reader.onload = (e) => {
                const a = document.createElement('a');
                a.download = filename;
                a.href = e.target.result;
                document.body.appendChild(a);
                a.click();
                document.body.removeChild(a);
              };
            }
          }
        }
      }

相关文章

网友评论

      本文标题:下载流文件

      本文链接:https://www.haomeiwen.com/subject/mvgcnctx.html