最近一个需求是批量下载文件,最后打包成zip包,post请求, 因为是文件流下载,所以在取后台数据的时候,要多传递一个[responseType: ‘blob’]这个参数 download() { this.tableLoading = true; console.log(this.selectionLen); let docIds = []; this.selectionLen.forEach((item, index) => { docIds.push(item.id); }); let p…