我需要在没有 Zipper 的情况下在 Laravel 响应下载功能中下载多个图像,因为我需要在 Angular 的新页面上显示图像。谢谢。
如果我理解正确,您希望服务器提供图像吗?
public function get($path)
{
$file = Storage::disk('s3')->get($pathToImage);
return response($file, 200)->header('Content-Type', 'image/png');
}