Laravel 5.2 validation errors

后端 未结 9 593
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 06:41

I have some trouble with validation in Laravel 5.2 When i try validate request in controller like this

$this->validate($request, [
                \'title         


        
相关标签:
9条回答
  • 2020-11-30 07:06

    Wrap you Routes in web middleware like below:

    Route::group(['middleware' => ['web']], function () {
        // Add your routes here
    });
    

    and In app\Http\Kernel.php move \Illuminate\Session\Middleware\StartSession::class from the web $middlewareGroups to $middleware

    Hope it will solve your problem.

    0 讨论(0)
  • 2020-11-30 07:09

    Route

    Route::group(['middlewareGroups' => ['web']], function () {
        // Add your routes here
        Route::resource('/post', 'PostController');
    });
    

    Functions

    public function store(Request $request){
       $this->validate($request, [
           //input field names
          'title' => 'required|max:20',
          'body' => 'required',
       ]);
    }
    

    View

    @if (count($errors) > 0)
            <div class="alert alert-danger">
                <ul>
                    @foreach ($errors->all() as $error)
                        <li>{{ $error }}</li>
                    @endforeach
                </ul>
            </div>
    @endif
    
    0 讨论(0)
  • 2020-11-30 07:16

    Update as of Laravel 5.2.27

    Laravel now supports the web middleware by default as you can see here: source

    In other words, you no longer need to wrap your routes around the web middleware group because it does it for you in the RouteServiceProvider file. However, if you are using a version of Laravel between 5.2.0 and 5.2.26, then refer to the method below:

    Below only applies to Laravel 5.2.0 to 5.2.26

    Without seeing your routes.php or Kernel.php file, here is what I suspect is happening.

    The way middlewares work has changed from 5.2 and 5.1. In 5.1, you will see this in your app/Http/Kernel.php file:

    protected $middleware = [
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
        \App\Http\Middleware\EncryptCookies::class,
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
        \Illuminate\Session\Middleware\StartSession::class,
        \Illuminate\View\Middleware\ShareErrorsFromSession::class,
        \App\Http\Middleware\VerifyCsrfToken::class,
    ];
    

    This array is your application's global HTTP middleware stack. In other words, they run on every request. Take a note at this particular middleware: Illuminate\View\Middleware\ShareErrorsFromSession. This is what adds the $errors variable on every request.

    However, in 5.2, things have changed to allow for both a web UI and an API within the same application. Now, you will see this in that same file:

    protected $middleware = [
        \Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode::class,
    ];
    
    protected $middlewareGroups = [
        'web' => [
            \App\Http\Middleware\EncryptCookies::class,
            \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
            \Illuminate\Session\Middleware\StartSession::class,
            \Illuminate\View\Middleware\ShareErrorsFromSession::class,
            \App\Http\Middleware\VerifyCsrfToken::class,
        ],
    
        'api' => [
            'throttle:60,1',
        ],
    ];
    

    The global middleware stack now only checks for maintenance. You now have a middleware group called "web" that includes a bulk of the previous global middleware. Remember that it is like this to allow for both a web UI and an API within the same application.

    So how do we get that $errors variable back?

    In your routes file, you need to add your routes within the "web" middleware group for you to have access to that $errors variable on every request. Like this:

    Route::group(['middleware' => ['web']], function () {
        // Add your routes here
    });
    

    If you aren't going to build an API, another option is to move the "web" middlewares to the global middleware stack like in 5.1.

    0 讨论(0)
  • 2020-11-30 07:24
    // Controller
    $this->validateWith([
        'title' => 'required',
        'content.*.rate' => 'required',
    ]);
    
    
    // Blade Template
    @if ($errors->has('title'))
        <span class="error">
            <strong>{{ $errors->first('title') }}</strong>
        </span>
    @endif
    @if ($errors->has('anotherfied'))
        <span class="error">
            <strong>{{ $errors->first('anotherfied') }}</strong>
        </span>
    @endif
    

    Find the documentation.

    0 讨论(0)
  • 2020-11-30 07:25

    Try to replace:

    ->withErrors($validator, 'error');
    

    with:

    ->withErrors($validator);
    
    0 讨论(0)
  • 2020-11-30 07:25

    This will work

    Route::group(['middlewareGroups' => ['web']], function () {
        // Add your routes here
    });
    

    as well as this also works

    Route::post('location',array(
        'as'=>'location',
        'middlewareGroups'=>'web',
        'uses'=>'myController@function'
    ));
    
    0 讨论(0)
提交回复
热议问题