vue学习经验总结(通过url下载文件)
html部分:<span><a @click="downFile(item.id)">下载简历</a></span>//简历下载downFile(id){this.downList=this.deliveryList.find((item)=>item.id===id)let a = document.createElement('a')..
·
html部分:
<span>
<a @click="downFile(item.id)">下载简历</a>
</span>
//简历下载
downFile(id){
this.downList=this.deliveryList.find((item)=>item.id===id)
let a = document.createElement('a')
a.href = this.downList.url 后端传来的url
a.click()
},
更多推荐
已为社区贡献4条内容
所有评论(0)