码迷,mamicode.com
首页 > Web开发 > 详细

js 导出Excel2

时间:2018-05-25 13:53:46      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:param   button   header   type   OLE   policy   ram   log   dmi   

 

 

// 点击导出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

标签:param   button   header   type   OLE   policy   ram   log   dmi   

原文地址:https://www.cnblogs.com/linyongli/p/9087225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!