0

文件系统设置

'public' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
        'url' => env('APP_URL').'/storage',
        'visibility' => 'public',
    ],

上传文件

 $path = $request->file('file-upload-photo-profile')->store('public/profile');

        $user->photo_profile_url =  Storage::url($path);

使用文件修补到文件夹:

storage/app/public/profile

示例网址:

尝试获取图像:

   <img src="{{asset( $user->photo_profile_url)}}" > 

生成的网址:http://sakura/storage/profile/aDtjR6z7Ih4fkmo7bdAqqyDXmhu2qE4pg3s5BBla.jpg

但我得到了这张图片的 404。在服务器设置根目录中

public

如何获取图片的链接?

4

1 回答 1

1

您是否有指向目录中存储文件夹的符号链接app/public

像这样:php artisan storage:link

于 2021-01-19T13:37:29.933 回答