前端vue接收后端.net传来的PDF进行下载

//生成PDF
this.$http.post(this.url + "api/Tmessage", { idf: frr, ido: oarr, idt: tarr, idh: harr, icr: scrr, ivr: svrr, ifr: sfrr, izr: szrr },{ responseType: 'blob' }).then(data => {
    console.log(data.data[0])

    var uInt8Array = new Uint8Array(data.data[0]); //先将返回的二进制数组转化为js的二进制数组
    let blob = new Blob([uInt8Array], { type: "application/pdf" });//然后创建blob对象,文件类型设置为excel的类型
    let blobURL = window.URL.createObjectURL(blob);//然后创建一个可访问的URL
    let tempLink = document.createElement('a');//创建a标签去下载
    tempLink.style.display = 'none';
    tempLink.href = blobURL;
    tempLink.setAttribute('download', "11.pdf");
    if (typeof tempLink.download === 'undefined') {
        tempLink.setAttribute('target', '_blank');
    }
    document.body.appendChild(tempLink);
    tempLink.click();
    document.body.removeChild(tempLink);
    window.URL.revokeObjectURL(blobURL);
})
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值