js 导出Excel2
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 导出Excel2相关的知识,希望对你有一定的参考价值。
// 点击导出Excel
$(document).on("click", "button.excel", (res) => {
qqkj.getExcel(res);
});
/**
保单列表
* 导出Excel
* @param callback 回调函数
*/
qqkj.getExcel = function(callback) {
var _this = this;
console.log(_this.getCookie("token"));
$.ajax({
beforeSend: function(request) {
request.setRequestHeader(‘token‘, _this.getCookie("token"))
},
type: "get",
cache: false,
data: ‘‘,
url: _this.url + ‘/uc/admin/policy/export/excel.xls‘,
success: function(data) {
if (data) {
callback(window.open(_this.url + ‘/uc/admin/policy/export/excel.xls?token=‘+_this.getCookie("token"), ‘_blank‘, ‘‘));
} else {
alert("ERROR!");
}
},
error: function(response) {
console.log(response.statusText);
}
})
};
以上是关于js 导出Excel2的主要内容,如果未能解决你的问题,请参考以下文章