web-dev-qa-db-ja.com

ボタンクリックでPhpSpreadSheetを保存する

私はLaravel phpSpreadSheet PhpExcelの続きでExcelファイルをダウンロードするアプリを取得しようとしています。しかし、これまでのところ運がありません。最初にonClickを介してAxios呼び出しを試みましたが、JSが保存を許可されていないため、動作しませんでした。その後、ボタンをLaravelアクションに接続しようとしました空のページ。

ここの誰かが私を助けることができるかどうかはわかりませんが、私は希望を持ち続けます

15

まず、ルートにエンドポイントを設定して、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>動作します。

これがお役に立てば幸いです。

30
Asur