通过按钮单击保存PhpSpreadSheet

2022-08-31 00:34:54

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

我不知道这里是否有人能够帮助我,但我会继续抱有希望。


答案 1

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

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

在控制器中:

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>

希望这对您有所帮助。


答案 2

推荐