美文网首页
laravel download

laravel download

作者: wind_5114 | 来源:发表于2021-01-22 18:22 被阅读0次

写这个的原因,在使用 cos 做文件存储时,官方所推的Storage::download 无法下载文件(文件其实是可以正常访问的)。

下面是官方的方法:

return Storage::download('file.jpg');

return Storage::download('file.jpg', $name, $headers);


最后的解决方法,使用 官方的 `response()->make`

$filename = basename(request('url'));

$content = file_get_contents(request('url'));

return response()->make($content, 200, [

    'Content-Type'              => 'application/octet-stream',

    'Content-Disposition'      => 'attachment; filename="'.$filename,

    'Content-Transfer-Encoding' => 'binary'

]);

相关文章

网友评论

      本文标题:laravel download

      本文链接:https://www.haomeiwen.com/subject/wqrezktx.html