vue-下载本地项目中的文件

发布时间 2023-04-24 14:31:00作者: 想吃水煮麻辣鱼
vue-下载本地项目中的文件  文件放在public下 新建了一个文件夹statics

import axios from 'axios' downs(name) { axios.get('statics/' + name, { //静态资源文件夹public responseType: 'blob', }).then(response => { const url = window.URL.createObjectURL(new Blob([response.data])); const link = document.createElement('a'); let fname = name; link.href = url; link.setAttribute('download', fname); document.body.appendChild(link); link.click(); }).catch(error => { console.log('error:' + JSON.stringify(error)) }); }