在 Laravel 视图中访问存储图像
使用存储在 Laravel 存储中的上传图像时,在视图中显示它们可能会带来挑战。由于服务器将请求路由到 /public,因此访问存储在 /storage 中的图像需要一个解决方案。
符号链接
建议的方法是在 / 之间创建符号链接公共/存储和/存储/应用程序/公共。此命令在 Laravel 版本 5.3 及更高版本中可用:
php artisan storage:link
这将创建一个符号链接,允许您使用以下路径访问 /storage/app/public 中的文件:
http://somedomain.com/storage/image.jpg
关闭路由
如果无法创建符号链接,您可以定义一个关闭路由来读取和提供图像:
Route::get('storage/{filename}', function ($filename) { $path = storage_path('public/' . $filename); if (!File::exists($path)) { abort(404); } $file = File::get($path); $type = File::mimeType($path); $response = Response::make($file, 200); $response->header("Content-Type", $type); return $response; });
使用以下路径访问图像:
http://somedomain.com/storage/image.jpg
警告
与服务器端处理相比,手动提供文件会导致性能损失。然而,这种方法对于受保护的文件或无法创建符号链接的环境很有用。
以上是如何在 Laravel 视图中访问存储图像?的详细内容。更多信息请关注PHP中文网其他相关文章!