blob 下载文件

125 阅读1分钟
const blob = new Blob([res], {
                        type: 'text/plain;charset=utf-8'
                    });
                    
const dEle = document.createElement('a');
const href = window.URL.createObjectURL(blob);
dEle.href = href;
dEle.download = `${'name'}.xlsx`; // 导出文件的名称
document.body.appendChild(dEle);
dEle.click();
document.body.removeChild(dEle);
window.URL.revokeObjectURL(href);

new blob对象 res => 后端data 传入utf-8格式type: 'text/plain;charset=utf-8' 创建标签 打开 = 下载文件

(批量导出)