exportZip(url, params, type = '.zip', fileName) { return axios({ url, data: params, method: 'post', headers: { 'X-Requested-With': 'XMLHttpRequest', 'Authorization': sessionStorage.getItem('token'), 'Content-Type': 'application/json' }, responseType: 'blob' }).then(checkStatus).then(response => { const blob = new Blob([response.data], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8' }); const downloadElement = document.createElement('a'); const href = window.URL.createObjectURL(blob); let name = ""; if (fileName) { name = fileName; } else { const contentDisposition = response.headers['content-disposition']; if (contentDisposition) { const filenameMatch = contentDisposition.match(/filename\*?=['"]?(?:UTF-\d['"]*)?([^;\r\n"']*)['"]?;?/); if (filenameMatch && filenameMatch.length > 1) { name = decodeURIComponent(filenameMatch[1]); } } } if (!name) { name = new Date().getTime().toString(); } downloadElement.href = href; downloadElement.download = name ; document.body.appendChild(downloadElement); downloadElement.click(); document.body.removeChild(downloadElement); window.URL.revokeObjectURL(href); return { code: 200 }; }); },
时间: 2024-02-14 17:30:21 浏览: 135
详解axios在node.js中的post使用
这段代码是一个函数`exportZip`,它用于导出一个zip文件。函数接受四个参数,`url`表示请求的URL地址,`params`表示请求的参数,`type`表示文件类型,默认是'.zip',`fileName`表示文件名。
函数使用axios库发送POST请求,并设置了请求头部信息,包括'X-Requested-With'、'Authorization'和'Content-Type'。同时设置了响应类型为blob。
在请求成功后,将响应数据转为Blob对象,创建一个下载链接,并设置下载链接的属性。如果传入了`fileName`参数,则使用该参数作为文件名;否则解析响应头部的'content-disposition'字段获取文件名。
如果无法获取文件名,则使用当前时间的时间戳作为文件名。
最后将下载链接添加到页面中,模拟点击下载链接,完成文件下载操作。
函数最后返回一个包含状态码200的对象。
请注意,这段代码中使用了一些浏览器相关的API,所以需要在浏览器环境下运行。
阅读全文