ajaxInstance({
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'x-token': sessionStorage.getItem('user'),
'responseType': 'blob'
},
method: 'get',
data: {},
url: 'XXXXX/export',
})
.then((response: any) => {
console.log(response)
const blob = new Blob([response.data]);
const fileName = 'stats.xls';
const linkNode = document.createElement('a');
linkNode.download = fileName; //a标签的download属性规定下载文件的名称
linkNode.style.display = 'none';
linkNode.href = URL.createObjectURL(blob); //生成一个Blob URL
document.body.appendChild(linkNode);
linkNode.click(); //模拟在按钮上的一次鼠标单击
URL.revokeObjectURL(linkNode.href); // 释放URL 对象
document.body.removeChild(linkNode);
}).catch((error) => {
console.error(error)
})
关于blob的详细信息: