内容简介:翻译自:https://stackoverflow.com/questions/45737485/saving-a-phpspreadsheet-through-button-click
延续PhpExcel的excel文件.但到目前为止,我没有任何运气.我首先尝试通过onClick进行Axios调用,但由于不允许JS保存,因此无效.之后我尝试将按钮附加到Laravel动作,这只是打开一个空页面.
我不知道这里是否有人能够帮助我,但我会保持充满希望
首先,您需要在路由中设置端点以使用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"); }
现在你只需要调用端点/电子表格/下载来开始下载,但是正常的<a href =“/ spreadsheet / download”>下载</ a>会工作.
希望这对你有所帮助.
翻译自:https://stackoverflow.com/questions/45737485/saving-a-phpspreadsheet-through-button-click
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- jquery – 如何在单击表格中的按钮时查找rowindex
- angularjs – 量角器按钮在新选项卡中单击并打开页面
- c# – 如果单击保存文件对话框上的取消按钮,如何执行某些操作?
- Flex中如何判断是否在组件之外单击
- 担心自己是否中了勒索病毒?单击这里自行查询
- ML.NET 1.0 发布,单击右键即可添加机器学习模型
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Android软件安全与逆向分析
丰生强 / 人民邮电出版社 / 2013-2 / 69.00元
本书由浅入深、循序渐进地讲解了Android 系统的软件安全、逆向分析与加密解密技术。包括Android软件逆向分析和系统安全方面的必备知识及概念、如何静态分析Android 软件、如何动态调试Android 软件、Android 软件的破解与反破解技术的探讨,以及对典型Android 病毒的全面剖析。 本书适合所有Android 应用开发者、Android 系统开发工程师、Android ......一起来看看 《Android软件安全与逆向分析》 这本书的介绍吧!