动态添加a标签及打开下载链接,location.href用法&&与window.open区别
原文出处:https://blog.csdn.net/weixin_40030173/article/details/98085887
https://blog.csdn.net/caiye_007/article/details/109581915
// 界面代码 <a @click="downFile()">{{文件名}}</a> // 文件下载 downFile () { let a = document.createElement('a') a.href = `使用后端的请求url` // 这里的请求方式为get,如果需要认证,接口上需要带上token a.click() },
记录自己的采坑之路,需要时方便查找