其他分享
首页 > 其他分享> > vue 实现文件的下载

vue 实现文件的下载

作者:互联网

下载事件,创建a标签直接使用下载属性
download(row) { // window.open(process.env.VUE_APP_BASE_API + "/hospital/file/downloadFile?tPath=" + tPath) var name = row.tFileName; var url = row.tFilePath; const a = document.createElement('a') a.setAttribute('download', name) a.setAttribute('target', '_blank') a.setAttribute('href', url) a.click()
}

标签:文件,vue,name,setAttribute,var,download,tPath,下载,row
来源: https://www.cnblogs.com/yixiu88/p/15962824.html