前端下载文件流

发布时间:2024年01月08日
下载文件流
后端返回的格式为文件流,但是的和后端开发成员确定好是什么格式的,最好是xlsx文件流
export function blobToFile(blob: any, fileName: string) {
  const aLink = document.createElement('a');
  aLink.style.display = 'none';
  aLink.href = URL.createObjectURL(new Blob([blob]));
  aLink.setAttribute('download', fileName);
  document.body.appendChild(aLink);
  aLink.click();
  URL.revokeObjectURL(aLink.href);
  document.body.removeChild(aLink);
}
blobToFile(返回的文件流, `文件流名称_${new Date().getTime()}.xlsx`);
文章来源:https://blog.csdn.net/L_C_sunny/article/details/135458709
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。