vue 中 文件下载方式总结

文件下载方式

1. window.location.href 方式

注意:
文件名称为中文时要使用 encodeURI 转码;
下载文件格式为 图片 或 txt 时文件会直接打开;
下文中${ url } 表示接口地址

根据文件名下载:

	window.location.href = `${url}/文件名.xlsx`;

文件名有中文:

	window.location.href = `${url}/${encodeURI("文件名.xlsx")}`;

根据接口及参数下载(文件名未知):

	window.location.href = `${url}?flag=1&id=${id}`;

当参数较多时:

	import Qs from 'qs'
	let params = {
		id:1,
		name:'张三'
	}
	let paramStr = Qs.stringify(params);
	window.location.href = `${url}?${paramStr}`

2. 后台返回文件流,模拟a 链接下载

 	this.$axios.get(${url}/${fileName}`, {
      responseType: "blob",
     }).then((response) => {
       //new Blob([res])中不加data就会返回下图中[objece objece]内容(少取一层)
       const blob = new Blob([response.data]); 
       const elink = document.createElement('a');
       elink.download = '文件名.xlsx';
       elink.style.display = 'none';
       elink.href = URL.createObjectURL(blob);
       document.body.appendChild(elink);
       elink.click();
       URL.revokeObjectURL(elink.href); // 释放URL 对象
       document.body.removeChild(elink);
     }).catch((error) => {
       this.$message({
         message: error
       });
     });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值