javascript 模拟用户点击实现文件下载


let download = (res)=>{
            // res 为blob对象
            let downloadElement = document.createElement('a');
            let href = window.URL.createObjectURL(res); //创建下载的链接
            // let type = res.type.substr(res.type.indexOf("/") + 1);
            downloadElement.href = href;
            downloadElement.download = fileName; //下载后文件名
            document.body.appendChild(downloadElement);
            downloadElement.click(); //点击下载
            document.body.removeChild(downloadElement); //下载完成移除元素
            window.URL.revokeObjectURL(href); //释放掉blob对象
          }
 

有什么不同见解可以在评论区共同讨论
原文地址:https://www.cnblogs.com/lambertlt/p/14991140.html