【发布时间】:2020-11-28 10:49:05
【问题描述】:
我正在尝试从视图访问存储在公用文件夹之外的图像。我可以像这样在 storage/app/public 文件夹中获取图像
<img src="storage/imagename.jpg" height="200" width="200">
我在 storage/app/avatar 中有一个头像文件夹,我如何将它放到视图中
【问题讨论】:
-
您是否运行
php artisan storage:link在storage/public和public/storage之间创建符号链接? -
您好,抱歉,我认为我的问题不清楚。我可以访问 storage/app/public 中的公用文件夹,它正在工作。我在 storage/app/avatar 中有一个名为 avatar 的私人文件夹,我该如何访问该文件夹?是的,我运行 php artisan storage:link
标签: laravel