我这边点击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') => {

    // ...
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏