从Laravel中发出请求以访问文件的队列任务
<p>大家好,我有一个排队的 Laravel 作业,用于通过用户导入的文件向数据库中插入一些记录。但是每当我在作业中访问请求对象以获取上传的文件时,我得到的是 null。然而,在控制器中文件是正常接收的。有什么想法吗?</p>
<p>在控制器中找到导入方法如下:</p>
<pre class="brush:php;toolbar:false;">public function import(ImportPointRequest $request)
{
Storage::makeDirectory('import_logs');
$file = request()->file('file');
$fileName = 'importlog_date_' . date('Y-m-d') . '-user_' . auth()->id() . '.xlsx';
$logFile = 'import_logs/' . $fileName;
$readerTypes = ['xlsx' => Excel::XLSX, 'xls' => Excel::XLS, 'csv' => Excel::CSV];
$link = route('file.show', ['import_logs', $fileName]);
try {
ExcelFacade::import(new PointsImportHeading(), $file);
} catch (\Exception $e) {
return $this->returnBadRequest(config('point.error-codes.import-fail'), $e->getMessage());
}
(new PointsImport(auth()->user(), auth()->user()->account_id, $logFile))->queue(
$file->getRealPath(),
null,
$readerTypes[request()->file('file')->getClientOriginalExtension()]
)->chain([new AfterImportJob(auth()->id(), $logFile, $link)]);
return $this->returnSuccess(trans('point::point.import-queued', ['module' => trans('point::point.point')]));
}</pre>
<p>在作业中找到 getImportedFileContent 方法如下:</p>
<pre class="brush:php;toolbar:false;">protected function getUploadedFileContent(): array
{
return Excel::toArray(new PointsImportHeading(), request()->file('file'));
}</pre>
<p>问题在于这部分 <code>request()->file('file')</code> 总是返回 null。</p>