Laravel global middleware can't get session

2019-06-25 01:40发布

问题:

 protected $middleware = [
     \App\Http\Middleware\Syspoint::class,
]

use Session;
class Syspoint
{
    echo \Session::get('syspoint');
}

I have a middleware required run everytime when page request, the middleware contain session.

I place inside of protected $middleware, but global middleware not able to get session.

回答1:

You are calling Session but it is not already started.

If you need Session inside your middleware you have to put it in the property protected $middlewareGroups under the key web and after the call to StartSession, i.e.:

 protected $middlewareGroups
    'web' => [
        \App\Http\Middleware\EncryptCookies::class,
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
        \Illuminate\Session\Middleware\StartSession::class,
        \App\Http\Middleware\Syspoint::class,


回答2:

dparoli's answer correct but not exactly! Because this middleware will run every web request!

How about running only under some route? Here is how;

protected $routeMiddleware = [
    'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
    'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
    'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
    'can' => \Illuminate\Auth\Middleware\Authorize::class,
    'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
    'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
    'sys-point' => \App\Http\Middleware\Syspoint::class,
];

Then on your route define new middleware

Route::group(['middleware' => ['web','sys-point'], 'namespace' => 'YourControllers'], function()
{
}