注:ajax中加responseType: "blob"
if (res && res.status === 200) {
const filename = "对账表.xlsx";
const blob = new Blob([res.data]);
const link = document.createElement("a");
link.style.display = "none";
link.href = URL.createObjectURL(blob);
link.setAttribute("download", filename);
document.documentElement.appendChild(link);
link.click();
document.documentElement.removeChild(link);
} else {
let content = res.data; //arraybuffer类型数据
let resBlob = new Blob([content]);
let reader = new FileReader();
reader.readAsText(resBlob, "utf-8");
reader.onload = () => {
_this.$message.error(reader.result);
};
}
如何利用PHPExcel类库建php将数据格式转为excel
上面是“js后端返回的数据是blob类型的excel下载文件”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2048.html
workflows工作流
爱因斯坦在做实验3d动漫ComfyUI工作流
一个黑人在森林中穿着折纸的衣服ComfyUI工作流
一只躲在一堆秋叶里的小刺猬
一种长着彩虹翅膀的虫子comfyui工作流
三阶放大comfyui工作流
一只蚂蚁在花丛中找食物ComfyUI工作流
城市里出现一只可爱的小生物ComfyUI工作流
羚羊安上小白兔的门牙ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

canvas黑洞漩涡(canvas+js)
用canvas实现画板涂鸦效果
iframe开发admin后台
在线生成金属文字
css3结合svg做一个动态广告
利用CSS3做一个星级评分样式
jquery鼠标滑过图片边框特效(jquery.focus-follow插件)
3d文字动画效果










