下载文件流
后端返回的格式为文件流,但是的和后端开发成员确定好是什么格式的,最好是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`);