簡體   English   中英

Laravel 5.2 如何顯示存儲圖像

[英]How to display an storage image Laravel 5.2

我想在我的視圖中顯示圖像,但我收到: File not found

兩個錯誤:

FileSystemAdapter.php 第 61 行中的 FileNotFoundException:storage/app/public/covers/teste-bravo_cover.jpg

FileSystem.php 第 386 行中的 FileNotFoundException:在路徑中找不到文件:storage/app/public/covers/teste-bravo_cover.jpg

但圖像在正確的文件夾中:

一只忙碌的貓文件夾上的文件

好吧,在 Laravel 5.2 中storage:link將不起作用。

磁盤上的圖像存儲 - 可以很好地存儲圖像

if($cover){
            dump("ok1");
            Storage::disk('public_covers')->put($covername, File::get($cover));

            $coverObject = New Cover();      

            //path com o nome do arquivo
            $coverObject->imagePath = 'storage/app/public/covers/'.$covername;
            dump($coverObject->imagePath);
        }

        //Salva a capa com o path para o arquivo
        $coverObject->save();

我的文件系統(帶有“public_covers”磁盤) - 可以很好地存儲圖像

        'public_covers' => [
            'driver' => 'local',
            'root' => storage_path('app/public/covers'),
            'visibility' => 'public',
        ],

查看代碼:(如果電影有封面,請出示)

                @if($movie->cover)
                <img src="{{route('cover.image', [$movie->cover])}}" />
                @endif

路由代碼,指向控制器方法

Route::get('/movieimage/{coverId}',
[
               'as' => 'cover.image',
               'uses' => 'MovieController@getimage'
           ]
);

控制器獲取圖像的方法

    public function getimage($coverId){
        $movie = Cover::find($coverId);
        //dump($movie);
        $imagePath = $movie['imagePath'];

        dump($imagePath);

        $file = Storage::disk('public_covers')->get($imagePath);

        $response = Response::make($file, 200);
        return $response;     
    }

你可以試試

需要包括這個

use Illuminate\Support\Facades\Storage;

並在控制器或路由中設置

Route::get('storage/{filename}', function ($filename)
{

    $files = Storage::files('logs');  // set repo name of storage folder

    $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;
});

我是laravel的新手。 雖然我在 laravel 5.8 上遇到了同樣的問題。 我創建了符號鏈接以將 pdf 顯示為視圖,但FileNotFoundException仍然存在。 我最終使用這個 url localhost:8000/storage/filename.ext訪問了pdf。

運行ln -s /path/to/laravel/storage/public /path/to/laravel/public/storagephp artisan storage:link一個存儲文件夾將添加到您的appname/public目錄中。 我認為一旦創建了鏈接,我們就可以通過創建的公共鏈接訪問存儲中的圖像。 嘗試通過在public目錄中創建的新/appname/public/storage/app/pathtoimage文件夾訪問圖像,而不是直接指向/appname/storage文件夾

<img src={{asset('/storage/pathtoimg')}} /> # using storage folder in public

檢查此解決方案是否適合您

我如何解決我的問題:

首先,將文件保存在“public”文件夾中。

在我的 filesystems.php 上,我更改了磁盤。 現在我的根是“public_path”而不是“storage_path”

        'public_covers' => [
            'driver' => 'local',
            'root' => public_path('images/covers'),
            'visibility' => 'public',
        ],

我的控制器方法

    public function store(Request $request){

        $cover = $request->file('cover');
        $inputs = $this->request->all();

        $this->validate($this->request, [
            'title' => 'required|max:255',
            'description' => 'required',
            'gender' => 'required',
            'secondGender' => 'required',
            'year' => 'numeric|min:1900|max:2100',
            'lenght' => 'numeric|min:10'
        ]);

        //build movie model object
        $movie = New Movie();
        $movie->user_id = \Auth::user()->id;
        $movie->gender_id = $inputs['gender'];
        $movie->secondgender_id = $inputs['secondGender'];
        $movie->title = $inputs['title'];
        $movie->slug = str_slug($inputs['title']);
        $movie->description = $inputs['description'];
        $movie->lenght = $inputs['lenght'];
        $movie->year = $inputs['year'];

        //TODO Mudar a composição do nome da foto para impedir que no futuro se sobreponha uma capa com outro filme que venha a ter o mesmo nome
        //TODO: Change the name createan to avoid overwrite the cover with an movie with the same name
        $covername = str_slug($inputs['title']).'_cover' .'.jpg';

        //if have an cover file
        if($cover){
            //storage the file on my public_covers (look my filesystems.php)
            Storage::disk('public_covers')->put($covername, File::get($cover));
            $coverObject = New Cover();      

            //path com o nome do arquivo
            //path with the file name
            $coverObject->imagePath = 'images/covers/'.$covername;

            $coverObject->save();
            $movie->cover_id = $coverObject->id;
        }

        $movie->save();

        return redirect()
            ->route('user.dashboard')
            ->with([
                       'success' => 'Filme adicionado com sucesso!',
                   ]);
    }

我的視圖圖像代碼

@if($movie->cover)
                <img class="cover" src="{{ asset($movie->cover->imagePath) }}" alt="{{ $movie->title }}"">
                @else
                <img class="cover" src="{{ asset('images/noimage.jpg') }}" alt="{{ $movie->title }}">
                @endif

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM