文件不会使用 laravel 5.7 表单上传

File will not upload using laravel 5.7 forms

我从laravel 5.4 的集体形式切换到5.7 的形式。在我切换并尝试使用新表单之前,一切都运行良好。我正在尝试上传一张带有文字 post 的简单图片。文本已上传到数据库中,但 picture/file 没有。我不确定我错过了什么,所以如果有人能提供帮助,我将不胜感激。提前致谢。

home.blade.php:

@extends('layouts.app')

@section('content')
<div class="container">
    <div class="row justify-content-center">
        <div class="col-md-8">
            <div class="card">
                <div class="card-header">Dashboard</div>

                <div class="card-body">
                    @if (session('status'))
                        <div class="alert alert-success" role="alert">
                            {{ session('status') }}
                        </div>
                    @endif

                        <form method="POST" enctype="multipart/form-data" action="{{ route('makePost')  }}">
                            @csrf

                            <div class="form-group row">
                                <label for="body" class="col-md-4 col-form-label text-md-right">{{ __('Body') }}</label>
                                <div class="col-md-6">
                                    <input id="body" type="text" class="form-control" name="body" value="{{ old('body') }}">
                                </div>
                            </div>

                            <div class="form-group row">
                                <label for="photo" class="col-md-4 col-form-label text-md-right">{{ __('Photo') }}</label>
                                <div class="col-md-6">
                                    <input id="photo" type="file" class="form-control" name="photo" value="{{ old('photo') }}">
                                </div>
                            </div>

                            <div class="form-group row mb-0">
                                <div class="col-md-6 offset-md-4">
                                    <button type="submit" class="btn btn-primary">
                                        {{ __('Submit Post') }}
                                    </button>
                                </div>
                            </div>
                        </form>
                </div>
            </div>
        </div>
    </div>
</div>
@endsection 

PostsController.php:

public function store(Request $request)
{
    $input = $request->all();

    $user = Auth::user();

    if($file = $request->file('photo_id')) {
        $name = time() . $file->getClientOriginalName();
        $file->move('images', $name);
        $photo = Photo::create(['file'=>$name]);
        $input['photo_id'] = $photo->id;
    }

    $user->post()->create($input);
    return redirect('/home');
}

问题出在这里:

if($file = $request->file('photo_id')) {
    $name = time() . $file->getClientOriginalName();
    $file->move('images', $name);
    $photo = Photo::create(['file'=>$name]);
    $input['photo_id'] = $photo->id;
}

在这里您假设输入的名称为 photo_id 但在您的表单中您将名称设置为 photo:

<input id="photo" type="file" class="form-control" name="photo" value="{{ old('photo') }}">

所以你应该保持一致 - 在所有地方使用相同的名称 - photo_idphoto