我这边点击a标签下载为什么不行

// 直接打开新页面了

<span @click="exportFileByUrl(i.url,i.name)">下载</span>

const exportFileByUrl = (url, name) => {
  const a = document.createElement('a')
  a.style.display = 'none'
  a.href = url
  name && a.setAttribute('download', name)
  document.body.appendChild(a)
  a.click()
  a.remove()
}
阅读 1.6k
2 个回答

name 加一个默认值:

const exportFileByUrl = (url, name = 'download') => {

    // ...
}
推荐问题
宣传栏