利用a标签下载文件

利用a标签的download属性下载文件

function downloadFile(obj, name, suffix) {
  const url = window.URL.createObjectURL(new Blob([obj]))
  const link = document.createElement('a')
  link.style.display = 'none'
  link.href = url
  const fileName = parseTime(new Date()) + '-' + name + '.' + suffix
  link.setAttribute('download', fileName)
  document.body.appendChild(link)
  link.click()
  document.body.removeChild(link)
}

 

上一篇:SIKI学院:MySQL数据库从零到精通:十二:课时 15 : 14-关于主键和UniqueKey的总结+课时 16 : 15-创建角色表.


下一篇:使用Bazel编译OpenSSL for Android