vue下载文件

【vue下载文件】通过url下载文件

downloadFile(dfile) { // dfile是文件地址 fetch(dfile).then(res => res.blob()).then(blob => { // 将链接地址字符内容转变成blob地址 const a = document.createElement('a') a.href = https://www.it610.com/article/URL.createObjectURL(blob) console.log(a.href) //截取路径中的文件名 a.download = dfile.substring(dfile.lastIndexOf("/")+1,dfile.length ) // 下载文件的名字 document.body.appendChild(a) a.click()![] }) },

vue下载文件
文章图片

    推荐阅读