js 通过window.open(url)下载文件,修改文件名

js 通过window.open(url)下载文件,修改文件名

通过window.open(url)下载文件(xlsx、xls、zip等格式文件),如果前端想要自定义更改下载时的文件名,可以使用以下方法

// 下载文件,自定义文件名称
export function downFile(url, fileName) {
  const x = new XMLHttpRequest()
  x.open('GET', url, true)
  x.responseType = 'blob'
  x.onload = function() {
    const url = window.URL.createObjectURL(x.response)
    const a = document.createElement('a')
    a.href = url
    a.download = fileName
    a.click()
  }
  x.send()
}
 

在页面调用

downFile('url', '自定义文件名')

转载请说明出处内容投诉
CSS教程_站长资源网 » js 通过window.open(url)下载文件,修改文件名

发表评论

欢迎 访客 发表评论

一个令你着迷的主题!

查看演示 官网购买