gpt4 book ai didi

php - 使用 Axios 获取并保存 Excel 文件

转载 作者:行者123 更新时间:2023-12-04 11:56:04 25 4
gpt4 key购买 nike

我正在使用 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;

最佳答案

尝试删除 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 .

关于php - 使用 Axios 获取并保存 Excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52521274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com