使用 Axios 获取并保存 Excel 文件

Posted

技术标签:

【中文标题】使用 Axios 获取并保存 Excel 文件【英文标题】:Use Axios to get and save an Excel file 【发布时间】:2019-03-02 10:35:05 【问题描述】:

我正在使用 react 和 axios 对将返回 .xlsx 文件的 php 服务进行 POST。 .xlsx 文件在服务器上正确创建,但在返回过程中它被损坏,通过 Chrome 检查器,数据似乎被转换为字符串,因此许多字符都被更改。有没有办法做到这一点?我尝试过的事情:

请求的标题

'Accept': 'application/octet-stream',
'responseType': 'blob',

带有响应对象

fileDownload(new Blob([response.data]), 'report.xlsx');

或者使用响应对象

const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', 'file.xlsx');
link.click();

无论我尝试什么,它似乎都已损坏。在服务器端,我有以下 PHP 代码:

$response = new Stream();
$response->setStream(fopen($tempFilePath, 'r'));
$response->setStatusCode(200);
$response->setStreamName($tempFilePath);
$responseHeaders = new Headers();
$responseHeaders->addHeaders(array(
    'Content-Disposition' => 'attachment; filename='report.xlsx',
    'Content-Type' => 'application/octet-stream',
    'Content-Length' => filesize($tempFilePath),
    'Expires' => '@0', 
    'Cache-Control' => 'must-revalidate',
    'Pragma' => 'public'
));
$response->setHeaders($responseHeaders);
return $response;

【问题讨论】:

@brocoli_rob 有以下解决方案,与其说是 Accept 标头,不如说是不使用 axios.post 帮助程序,而是将所有内容指定到正常的 axios 调用中,以便您可以将标头配置与 responseType 分开配置项。 【参考方案1】:

尝试从标题中删除 responseType 并将其直接添加到您传递给 axios 的选项对象中:

axios(
    method:'GET',
    url: '[your_url_to_get_file]',      
    responseType: 'blob', 
    headers:  your headers 
)

除此之外,我会尝试使用application/vnd.openxmlformats-officedocument.spreadsheetml.sheet 作为您的内容类型,而不是octect-stream。我从未尝试过octect-stream,但我提到的那个一直对我有用 .xlsx 文件。

有关 MIME 类型的参考,请参阅here。

【讨论】:

【参考方案2】:
const axios = require('axios');
const fs = require('fs');

const getXLS = () => 
    return axios.request(
    responseType: 'arraybuffer',
    url: 'https://drive.google.com/ft7P9FAQ/view?usp=sharing',
    method: 'get',
    headers: 
    'Content-Type': 'blob',
    ,
  ).then((result) => 
      const outputFilename = 'xyzzzz.xls';
      fs.writeFileSync(outputFilename, result.data);
      return outputFilename;
    );
  

  getXLS();

【讨论】:

以上是关于使用 Axios 获取并保存 Excel 文件的主要内容,如果未能解决你的问题,请参考以下文章

使用 axios 获取文件(内容和文件名)

程序从pcap文件中获取端口号并将它们保存在excel文件中

使用 VBA 获取 Excel 选项卡名称并复制到 Access 表

如何在excel VBA中获取保存文件的路径和名称?

爬取搜索出来的电影的下载地址并保存到excel

使用jpa注释在一个事务中保存数据并在另一个事务中获取数据