vue3 前端实现导出下载pdf文件

别凶小晗. 2024-09-30 12:33:03 阅读 70

在这里插入图片描述

这样的数据实现导出 yourArrayBufferOrByteArray 就是后端返回数据

<code>// 创建Blob对象

const blob = new Blob([new Uint8Array(res)], { type: 'application/pdf' })

// 创建一个表示该Blob的URL

const url = URL.createObjectURL(blob);

// 创建一个a标签用于下载

const a = document.createElement('a');

a.href = url;

a.download = 'yourfile.pdf'; // 设置下载文件名

document.body.appendChild(a);

a.click(); // 触发下载

// 释放URL对象

URL.revokeObjectURL(url);

document.body.removeChild(a);



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。