所以我正在使用Laravel一段时间。我写了这个:
public function downloadUserFile(){
$result = $_POST['filename'];
$entry = File::where('filename', '=', $result)->firstOrFail();
$file = Storage::disk()->get(storage_path($entry->filePath));
$headers = array('Content-Disposition' => 'attachment; filename="'.basename($entry->filePath).'"', 'Content-Type' => $entry->mimetype );
return (new Response($file, 200))->header($headers);
}
希望我可以下载所选文件。好吧,我在FilesystemAdapter.php第58行和Filesystem.php第381行中遇到两个异常:在路径找不到文件:C:\ xampp \ htdocs \ bluedrive \ drive \ storage \ uploads \ 1 \ SHTURCITE - Ti I Az.mp3 - ---这个文件在目录中,我无法理解为什么laravel找不到它。