这样的数据实现导出 yourArrayBufferOrByteArray 就是后端返回数据
// 创建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);