Vue 实现下载本地静态文件
vue本地文件下载
·
<el-link type="primary" style="margin-left: 80%" @click="downloadDoc">下载完整的排版实例</el-link>
downloadDoc(){
// 创建一个<a></a>标签
const a = document.createElement('a');
a.href = './documents/Sample-Paper-PRE-bundle.docx';
a.download = 'Sample-Paper-PRE-bundle.docx';
// 障眼法藏起来a标签
a.style.display = 'none';
// 将a标签追加到文档对象中
document.body.appendChild(a);
// 模拟点击了<a>标签,会触发<a>标签的href的读取,浏览器就会自动下载了
a.click();
// 一次性的,用完就删除a标签
a.remove();
}
注意:把文件放在public文件夹中,不建议放在assets文件夹下(可能会报错:文件找不到,路径问题)
更多推荐
已为社区贡献11条内容
所有评论(0)