Vue + Ts导出后端post请求传出的excel文件流

Vue + Ts导出后端post请求传出的excel文件流

//查询结果全部导出
const exportAll = ({}) => {
	//导出接口
	ExcelAPI.yyownload
		.post({})
		.then(res => {
			const content = res.data;
			const blob = new Blob([content], { type: "application/vnd.ms-excel" });
			const href = URL.createObjectURL(blob); //创建新的URL表示指定的blob对象
			const a = document.createElement("a"); //创建a标签
			a.style.display = "none";
			a.href = href; // 指定下载链接
			// a.download = this.filename; //指定下载文件名
			a.download = "运营报表" + now() + ".xls";
			a.click(); //触发下载
			URL.revokeObjectURL(a.href); //释放URL对象
		})
		.catch(err => {
			console.error(err);
		})
		.finally(() => {});
};
<el-button type="success" @click="exportAll">导出Excel文件el-button>

你可能感兴趣的:(Vue,vue.js,excel,javascript)