通过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()
}
在页面调用文章来源地址https://www.toymoban.com/news/detail-554440.html
downFile('url', '自定义文件名')
文章来源:https://www.toymoban.com/news/detail-554440.html
到了这里,关于js 通过window.open(url)下载文件,修改文件名的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!