本文主要是介绍后端返回二进制,前段导出excel,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
axios({method: 'post',url: 'URL',responseType: 'blob',}).then(async res => {let blob = new Blob([res.data], { type: 'application/vnd.ms-excel;charset=utf-8' });let href = window.URL.createObjectURL(blob); //创建下载的链接const link = document.createElement('a');link.href = href;link.download = '报表汇总.xlsx';link.click();}).catch(error => {console.error(error);// 处理错误});
这篇关于后端返回二进制,前段导出excel的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!