laravel內置了一箇中間件來驗證用戶是否通過認證,若是用戶沒有通過認證,中間件會將用戶重定向到登陸頁面,不然若是用戶通過認證,中間件就會容許請求繼續往前進入下一步操做。php
固然,除了認證以外,中間件還能夠被用來處理更多其它任務。好比:CORS 中間件能夠用於爲離開站點的響應添加合適的頭(跨域);日誌中間件能夠記錄全部進入站點的請求。html
Laravel框架自帶了一些中間件,包括認證、CSRF 保護中間件等等。全部的中間件都位於 app/Http/Middleware
目錄。laravel
中間是請求前仍是請求後執行取決於中間件自己,如下中間件會在請求處理前執行一些任務跨域
<?php namespace App\Http\Middleware; use Closure; class TestMiddle { public function handle($request, Closure $next) { // 執行動做 if(!$request->session()->has('huser')){ return redirect("login/index"); } return $next($request); } }
而下面這個中間件則會在請求處理後執行其任務:session
<?php namespace App\Http\Middleware; use Closure; class TestMiddle { public function handle($request, Closure $next) { $response = $next($request); // 執行動做 if(!$request->session()->has('huser')){ return redirect("login/index"); } return $response; } }
中間件能夠本身在編輯器裏面新建對應類生成,也可用命令生成app
php artisan make:middleware TestMiddle
此時,laravel的app\Http\Middleware\目錄就會多一個TestMiddle.php的中間件文件框架
此時中間件還不能直接使用,必須把它註冊到咱們的laravel中,以下編輯器
只需在 app/Http/Kernel.php
類(3個屬性,對應裏面加入,我有時用路由的)spa
'TestMiddle' => \App\Http\Middleware\TestMiddle::class,
Route::get('/',function(){ return redirect('home/index'); })->middleware('TestMiddle');
Route::group(['middleware' => ['TestMiddle']], function() { Route::controller("db","DataBaseController"); });
Route::controller("home","HomeController",['middleware'=>'TestMiddle']);
http://www.cnblogs.com/fwqblogs/p/6641569.html日誌