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

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)) }); }

 

posted @ 2023-04-24 14:22  想吃水煮麻辣鱼  阅读(549)  评论(0编辑  收藏  举报