js多文件下载并重命名
Posted 初辰ge
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js多文件下载并重命名相关的知识,希望对你有一定的参考价值。
js多文件下载并重命名
function downloadFile(list,index)//下载文件方法
if(index>=list.length)
return
let url=list[index];
const x = new window.XMLHttpRequest();
x.open('GET', url, true);
x.responseType = 'blob';
var fileName = url.substring(url.lastIndexOf("."),url.length);
x.onload = () =>
const url = window.URL.createObjectURL(x.response);
const a = document.createElement('a');
a.href = url;
a.download = "每日意见反馈表"+(index+1)+fileName;
a.click();
downloadFile(list,index+1)
;
x.send();
downloadFile(list,0)
以上是关于js多文件下载并重命名的主要内容,如果未能解决你的问题,请参考以下文章