繁体   English   中英

axios 从后台按生成的文件名下载文件

[英]Axios download file by the generated filename from the backend

我正在使用Axios向我的后端发送POST请求。

后端生成一个名为testing.xlsxExcel文件。

我正在尝试做的事情:

使用从后端生成的相同文件名执行此文件,我尝试过Postman ,一切正常。

我尝试过的:

axios.post(`${env.ENDPOINT}reports/sales/customers_statement`, {
    customers_id: form_data.customers_id,
    from_date: form_data.from_date,
    to_date: form_data.to_date,
  },{
    responseType: 'blob'
  }).then((res) => {
    const url = window.URL.createObjectURL(new Blob([res.data]));
    const link = document.createElement('a');
    const file_name = `${new Date().toISOString().slice(0,10)}.xlsx`; // RENAME HERE
    link.href = url;
    link.setAttribute('download', file_name);
    document.body.appendChild(link);
    link.click();
    resolve(res.data);
  }).catch((e) => {
    reject(e);
  });

这工作正常,但它不会通过从服务器生成的文件名下载文件。

换句话说,我想向我的后端发送请求,以通过后端已经生成的文件名下载文件,就像我使用 Postman 发送请求一样。

这是因为您将下载属性设置为 file_name 值,该值与返回的文件名服务器不同

 const file_name = `${new Date().toISOString().slice(0,10)}.xlsx`; 

尝试将以上更改为此

const contentDisposition = data.headers['content-disposition'];
const filename = contentDisposition.match(/filename=(?<filename>[^,;]+);/)[0]; 
link.setAttribute('download', file_name);

在后端

response.setHeader("Content-disposition", "attachment; filename="+ yourfilenamehere);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM