将图像保存在公用文件夹中,而不是存储 laravel 5

2022-08-30 19:30:40

我想把我的头像保存在“公共”文件夹,然后检索。

还行。我可以保存它,但在“存储/应用程序”文件夹中,而不是“公共”

我的朋友告诉我去“配置/文件系统.php”并编辑它,所以我就这样做了

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

仍然没有变化。

这是我的简单代码

路线:

Route::get('pic',function (){
return view('pic.pic');
});
Route::post('saved','test2Controller@save');

控制器

public function save(Request $request)
{
        $file = $request->file('image');
        //save format
        $format = $request->image->extension();
        //save full adress of image
        $patch = $request->image->store('images');

        $name = $file->getClientOriginalName();

        //save on table
        DB::table('pictbl')->insert([
            'orginal_name'=>$name,
            'format'=>$base,
            'patch'=>$patch
        ]);

        return response()
               ->view('pic.pic',compact("patch"));
}

视图:

{!! Form::open(['url'=>'saved','method'=>'post','files'=>true]) !!}
                {!! Form::file('image') !!}
                {!! Form::submit('save') !!}
            {!! Form::close() !!}

                <img src="storage/app/{{$patch}}">

如何将我的图像(和将来的文件)保存在公用文件夹而不是存储中?


答案 1

在config/filesystems.php中,你可以这样做...在公共环境中更改根元素

'disks' => [
   'public' => [
       'driver' => 'local',
       'root'   => public_path() . '/uploads',
       'url' => env('APP_URL').'/public',
       'visibility' => 'public',
    ]
]

您可以通过以下方式访问它

Storage::disk('public')->put('filename', $file_content);

答案 2

您可以将磁盘选项传递给类的方法:\Illuminate\Http\UploadedFile

$file = request()->file('image');
$file->store('toPath', ['disk' => 'public']);

或者您可以创建新的文件系统磁盘,并将其保存到该磁盘。

您可以在 中创建新的存储光盘:config/filesystems.php

'my_files' => [
    'driver' => 'local',
    'root'   => public_path() . '/myfiles',
],

在控制器中:

$file = request()->file('image');
$file->store('toPath', ['disk' => 'my_files']);

推荐