3

我正在尝试构建一个小型应用程序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 显示链接的文档。

帮我解决这个问题。谢谢

4

2 回答 2

5

这段代码就像从 Laravel 7 中的 S3 下载的魅力:

// $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/

于 2020-04-19T13:15:36.643 回答
2

我记得这是在我的项目中实现的。让我与您分享一个示例代码... Laravel 已经s3Storage文档中提供了有关的详细信息

代码:

use Illuminate\Support\Facades\Response 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(文件路径)存储在您的数据库中。要了解更多信息,您可以访问

于 2018-10-23T18:42:24.130 回答