我正在尝试在VueJs
中构建一个小应用程序作为前端,Laravel
作为后端,我将管理部分中的文件上传到我的aws-s3
,同时上传我将该文件的链接存储在数据库中的文件。每个操作都由 api 调用维护,现在我想为我的最终用户提供这些下载的选项,所以我正在进行这样的 axios 调用:
downloadPDF(docs){
const documents = {
document: docs
}
axios.post('api/documents-download', documents, {headers: getHeader()}).then(response => {
if(response.status === 200)
{
console.log('Downloaded')
}
})
},
在我的控制器中,我有这样的东西:
public function download(Request $request)
{
$headers = [
'Content-Type' => 'application/pdf',
'Content-Description' => 'File Transfer',
'Content-Disposition' => "attachment; filename=filename.pdf",
];
return response()->download($request->document, 'filename.pdf', $headers);
}
但它给我带来了错误:
文件"https://s3-us-west-2.amazonaws.com/noetic-dev/2_Project/shiven-affordable-housing-surat/3_Document/Form+1/Form1.pdf"不存在
该文件显然存在并公开,如您在上面看到的那样,url 显示链接的文档。
帮我解决这个问题。谢谢
我记得在我的项目中实现这个。 让我与您分享一个示例代码... Laravel已经在文档中提供了有关s3Storage
的详细信息
法典:
use IlluminateSupportFacadesResponse as Download;
public function download_config(Config $config)
{
$headers = [
'Content-Type' => 'Content-Type: application/zip',
'Content-Disposition' => 'attachment; filename="'. $config->name .'"',
];
return Download::make(Storage::disk('s3')->get($config->path), Response::HTTP_OK, $headers);
}
我假设您可能正在数据库中存储$config->path
(文件路径(。 要了解更多信息,您可以访问此
这段代码就像一个魅力,用于从 Laravel 3 中的 S7 下载:
// $filePath should look like this: some-directory/filename.zip
return redirect(Storage::disk('s3')->temporaryUrl(
$filePath,
now()->addHour(),
['ResponseContentDisposition' => 'attachment']
));
学分:https://sutherlandboswell.com/force-file-download-from-aws-s3-in-laravel/