// 按钮点击事件
$('#download').click(function () {
var xhr = new XMLHttpRequest();
xhr.open('POST', "接口url", true);
xhr.responseType = "blob"; // 返回类型blob
// 定义请求完成的处理函数,请求前也可以增加加载框/禁用下载按钮逻辑
xhr.onload = function () {
// 请求完成
if (this.status === 200) {
var blob = this.response;
var reader = new FileReader();
reader.readAsDataURL(blob); // 转换为base64,可以直接放入a标签href
reader.onload = function (e) {
// 转换完成,创建一个a标签用于下载
var a = document.createElement('a');
a.href = e.target.result;
a.download = '导出表格名字.xls';
$("body").append(a); // 修复firefox中无法触发click
a.click();
$(a).remove();
}
}
};
// 发送ajax请求
xhr.send()
});
自己找不到是参考哪个的修改的了
问题,其实后台接口是给了表格名字的,但是js获取的都是乱码,所以直接这里给的表格名字