gpt4 book ai didi

php - 通过单击按钮保存 PhpSpreadSheet

转载 作者:IT王子 更新时间:2023-10-29 00:01:43 29 4
gpt4 key购买 nike

我正在尝试让我的 Laravel 应用程序使用 phpSpreadSheet 下载 excel 文件PhpExcel 的延续。但到目前为止,我没有任何运气。我首先尝试通过 onClick 进行 Axios 调用,但这没有用,因为不允许 JS 保存内容。之后,我尝试将按钮附加到 Laravel 操作,这只是打开了一个空白页面。

我不知道这里是否有人能够帮助我,但我仍然充满希望

最佳答案

首先,您需要在路由中设置一个端点以使用 ajax(在您的情况下为 axios)调用它:

Route::get('spreadsheet/download',[
'as' => 'spreadsheet.download',
'uses' => 'SpreadsheetController@download'
]);

在您的 Controller 中:

public function download ()
{
$fileContents = Storage::disk('local')->get($pathToTheFile);
$response = Response::make($fileContents, 200);
$response->header('Content-Type', Storage::disk('local')->mimeType($pathToTheFile));
return $response;
}

如果您没有该文件,您可以将其保存到 php://output :

public function download ()
{
$writer = \PhpOffice\PhpSpreadsheet\IOFactory::createWriter($spreadsheet, "Xlsx");
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment; filename="file.xlsx"');
$writer->save("php://output");
}

现在你只需要调用端点/spreadsheet/download开始下载,但是正常<a href="/spreadsheet/download">Download</a>会工作。

希望对你有帮助。

关于php - 通过单击按钮保存 PhpSpreadSheet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45737485/

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