通過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)