通过a标签
// 创建a标签 const link = document.createElement('a') // download属性 link.setAttribute('download', row.newName) // href链接 link.setAttribute('href', row.downloadPath) // 自执行点击事件 link.click() document.body.removeChild(link)
通过open
window.open(row.downloadPath)