文件下载及下载文件重命名

时间:2025-04-05 12:06:57
handleDownload() { let checkList = [{ResourcesUrl:'http://localhost:8080/download/',ResourcesName:''},{ResourcesUrl:'http://localhost:8080/download/',ResourcesName:''}] checkList && checkList.length && checkList.forEach(item => { if (this.isIE()) { // IE window.open(item.ResourcesUrl, '_blank') } else { let a = document.createElement('a') // 创建a标签 let e = document.createEvent('MouseEvents') // 创建鼠标事件对象 e.initEvent('click', false, false) // 初始化事件对象 a.href = this.baseUrl + item.ResourcesUrl // 设置下载地址 a.download = item.ResourcesName // 设置下载文件名 此处可以修改为自己想要的下载文件名 a.dispatchEvent(e) } }) }, isIE() { if (!!window.ActiveXObject || 'ActiveXObject' in window) { return true } else { return false } }