方法1. downloadPDF(fileName) {//要下载的文件路径varfileUrl = './file/' +fileName;//创建一个隐藏的元素,用于下载文件vara = document.createElement('a'); a.href=fileUrl; a.download= fileName;//可以自定义下载文件的名称a.style.display = 'none';//将元素添加到页面上document.body.appendChild...
方法一: 同源资源文件下载 constdownLoadFunc=(imgSrc,imgName)=>{if(!imgSrc)returnleturl=window.URL.createObjectURL(newBlob([imgSrc]))letlink=document.createElement('a')link.style.display='none'link.href=url link.setAttribute('download',imgName)document.body.appendChild(link)link.click()} 方法二...
经过一天的问题查找,发现vue cli3.0中静态资源文件夹为“public”,在“public”文件夹下建“export”文件夹,放待导出文件“export.pdf”后,返回状态码200,下载正常: 3.总结 vue cli2.0的静态文件是static vue cli3.0的静态文件是public 童鞋们使用过程中千万不要搞错了,会获取不到本地文件的 注:除本文中pdf文件...
vue中a标签下载本地⽂件-未找到【已解决】⾸先 download(url, filename) { return fetch(url).then(res => res.blob().then(blob => { console.log(res)let a = document.createElement('a');let url = window.URL.createObjectURL(blob);a.href = url;a.download = filename;a.click();window...