download () { let link = document.createElement('a') l ink.style.display = 'none' let url = `.....`//绝对地址 link.href = url link.download = '' //文件名 document.head.appendChild(link) link.click() document.head.removeChild(link) }