导出表格发请求,后端返回一推乱码,怎么办,选择表格列导出怎么弄
试下这个库呢 https://github.com/cuikangjie/js-export-excel https://github.com/cuikangjie/js-export-excel
那叫数据流,不是乱码,菜鸡 数据流导出 https://blog.csdn.net/shunhua19881987/article/details/107105603/
var elink = document.createElement('a');
elink.download = res.name;
elink.style.display = 'none';
var blob = new Blob([res.data]);
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
document.body.removeChild(elink);
试试 res.name 是文件名 res.data是文件流 文件名注意要有后缀的