导出表格处理

 const  link = document.createElement('a');
    const blob = new Blob([res.data] , {type :"application/vns.ms-execl;charset=UTF-8"});
    link.style.display = 'none';
    var fileName = decodeURIComponent(res.headers["content-disposition"].split("=")[1])
    console.log(fileName);
    const url = window.URL.createObjectURL(blob);
    link.href = url;
    link.setAttribute("download", fileName);
    document.body.appendChild(link);
    link.click();
    document.body.removeChild(link);
    window.URL.revokeObjectURL(url);

导出文件处理

 const a = document.createElement('a');
                    a.setAttribute('download', '');
                    // a.setAttribute('href', '/lazy_load.js');
                    a.setAttribute('href', res.data.file);
                    a.click() // 自执行点击事件

娜娜
33 声望6 粉丝

前端工程师一枚