laravel 中間件
中間件充當(dāng)請(qǐng)求和響應(yīng)之間的橋梁。這是一種過濾機(jī)制。本章向您解釋laravel中的中間件機(jī)制。
laravel包含一個(gè)中間件,用于驗(yàn)證應(yīng)用程序的用戶是否已通過身份驗(yàn)證。如果用戶通過身份驗(yàn)證,則會(huì)重定向到主頁(yè),否則重定向到登錄頁(yè)面。
中間件可以通過執(zhí)行以下命令來創(chuàng)建 -
php artisan make:middleware <middleware-name> </middleware-name>
將 < middleware-name>替換為 中間件的名稱 。您創(chuàng)建的中間件可以在 app / http / middleware 目錄中看到。
例
觀察以下示例以了解中間件機(jī)制 -
第1步 - 讓我們現(xiàn)在創(chuàng)建agemiddleware。 要?jiǎng)?chuàng)建它,我們需要執(zhí)行以下命令 -
php artisan make:middleware agemiddleware
第2步 - 成功執(zhí)行該命令后,您將收到以下輸出 -
第3步 - agemiddleware 將在 app / http / middleware中 創(chuàng)建。新創(chuàng)建的文件將為您創(chuàng)建以下代碼。
namespace app\http\middleware; use closure; class agemiddleware { public function handle($request, closure $next) { return $next($request); } }</pre--><h2>注冊(cè)中間件</h2>
在使用之前,我們需要注冊(cè)每個(gè)中間件。laravel中有兩種類型的中間件。
<ul> <li>全球中間件</li> <li>路由中間件</li> </ul>在 <strong>全球中間件</strong> 將應(yīng)用的每個(gè)http請(qǐng)求運(yùn)行,而 <strong>路由中間件</strong> 將被分配到一個(gè)特定的路線。中間件可以在 <strong>app / http / kernel.php上注冊(cè)。</strong> 該文件包含兩個(gè)屬性 <strong>$ middleware</strong> 和 <strong>$ routemiddleware</strong> 。 <strong>$ middleware</strong> 屬性用于注冊(cè)全局中間件, <strong>$ routemiddleware</strong> 屬性用于注冊(cè)路由特定中間件。
要注冊(cè)全局中間件,請(qǐng)?jiān)? middleware屬性的末尾列出類。
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, ];要注冊(cè)路由特定中間件,請(qǐng)將密鑰和值添加到$ routemiddleware屬性中。
protected $routemiddleware = [ 'auth' => \app\http\middleware\authenticate::class, 'auth.basic' => \illuminate\auth\middleware\authenticatewithbasicauth::class, 'guest' => \app\http\middleware\redirectifauthenticated::class, ];<h3>例</h3>我們?cè)谇懊娴睦又袆?chuàng)建了 <strong>agemiddleware</strong> 。我們現(xiàn)在可以在路由特定的中間件屬性中注冊(cè)它。下面顯示了該注冊(cè)的代碼。
以下是 <strong>app / http / kernel.php</strong> 的代碼-
namespace app\http; use illuminate\foundation\http\kernel as httpkernel; class kernel extends httpkernel { 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, ]; protected $routemiddleware = [ 'auth' =--> \app\http\middleware\authenticate::class, 'auth.basic' => \illuminate\auth\middleware\authenticatewithbasicauth::class, 'guest' => \app\http\middleware\redirectifauthenticated::class, 'age' => \app\http\middleware\agemiddleware::class, ]; }<h2>中間件參數(shù)</h2>
我們也可以通過中間件傳遞參數(shù)。例如,如果您的應(yīng)用程序具有不同的角色,如用戶,管理員,超級(jí)管理員等,并且您希望基于角色對(duì)操作進(jìn)行身份驗(yàn)證,則可以通過向中間件傳遞參數(shù)來實(shí)現(xiàn)此操作。我們創(chuàng)建的中間件包含以下函數(shù),我們可以在 <strong>$ next</strong> 參數(shù)后傳遞我們的自定義參數(shù)。
public function handle($request, closure $next) { return $next($request); }<h3>例</h3><strong>第1步</strong> - 通過執(zhí)行以下命令創(chuàng)建rolemiddleware -
php artisan make:middleware rolemiddleware<strong>第2步</strong> - 成功執(zhí)行后,您將收到以下輸出 -
<img src="/public/core/edit/php/../attached/20231217141745_94152.jpg" alt="" border="0" />
<strong>第3步</strong> - 在新創(chuàng)建的rolemiddlewareat <strong>應(yīng)用/ http / middleware / rolemiddleware.php</strong> 的句柄方法中添加以下代碼 <strong>。</strong>
namespace app\http\middleware; use closure; class rolemiddleware { public function handle($request, closure $next, $role) { echo "role: ".$role; return $next($request); } }</pre--><strong>第4步</strong> - 在 <strong>app \ http \ kernel.php</strong> 文件中注冊(cè) <strong>rolemiddleware</strong> 。添加該文件中以灰色突出顯示的行來注冊(cè)rolemiddleware。
<img src="/public/core/edit/php/../attached/20231217141824_77722.jpg" alt="" border="0" />
<strong>第5步</strong> - 執(zhí)行以下命令來創(chuàng)建 <strong>testcontroller</strong> -
php artisan make:controller testcontroller --plain<strong>第6步</strong> - 成功執(zhí)行上述步驟后,您將收到以下輸出 -
<img src="/public/core/edit/php/../attached/20231217141927_21931.jpg" alt="" border="0" />
<strong>第7步</strong> - 將以下代碼行復(fù)制到 <strong>app / http / testcontroller.php</strong> 文件中。
<strong>應(yīng)用程序/ http / testcontroller.php</strong>
namespace app\http\controllers; use illuminate\http\request; use app\http\requests; use app\http\controllers\controller; class testcontroller extends controller { public function index(){ echo " test controller."; } }<strong>第8步</strong> - 在 <strong>app / http / routes.php</strong> 文件中添加以下代碼行。
<strong>應(yīng)用程序/ http / routes.php文件</strong>
route::get('role',[ 'middleware' => 'role:editor', 'uses' => 'testcontroller@index', ]);<strong>第9步</strong> - 訪問以下url以使用參數(shù)測(cè)試中間件
http://localhost:8000/role<strong>第10步</strong> - 輸出將顯示如下圖所示。
<img src="/public/core/edit/php/../attached/20231217142002_35834.jpg" alt="" border="0" />
<h2>可終止的中間件</h2>
響應(yīng)已發(fā)送到瀏覽器后,終止中間件執(zhí)行一些任務(wù)。這可以通過在中間件中使用 <strong>terminate</strong> 方法創(chuàng)建中間件來完成。終止中間件應(yīng)該注冊(cè)到全局中間件。terminate方法將接收兩個(gè)參數(shù) <strong>$ request</strong> 和 <strong>$ response。</strong> 可以按照以下代碼中所示創(chuàng)建終止方法。
<h3>例</h3><strong>第1步</strong> - 通過執(zhí)行以下命令創(chuàng)建 <strong>terminatemiddleware</strong> 。
php artisan make:middleware terminatemiddleware<strong>第2步</strong> - 上述步驟將產(chǎn)生以下輸出 -
<img src="/public/core/edit/php/../attached/20231217142033_92770.jpg" alt="" border="0" />
<strong>第3步</strong> - 將以下代碼復(fù)制到 <strong>app / http / middleware / terminatemiddleware.php中</strong> 新創(chuàng)建的 <strong>terminatemiddleware</strong> 中 <strong>。</strong>
namespace app\http\middleware; use closure; class terminatemiddleware { public function handle($request, closure $next) { echo "executing statements of handle method of terminatemiddleware."; return $next($request); } public function terminate($request, $response){ echo " executing statements of terminate method of terminatemiddleware."; } }<strong>第4步</strong> - 在 <strong>app \ http \ kernel.php</strong> 文件中注冊(cè) <strong>terminatemiddleware</strong> 。添加該文件中以灰色突出顯示的行來注冊(cè)terminatemiddleware。 <em>**</em>
<img src="/public/core/edit/php/../attached/20231217142107_45919.jpg" alt="" border="0" />
<strong>第5步</strong> - 執(zhí)行以下命令創(chuàng)建 <strong>abccontroller</strong> 。
php artisan make:controller abccontroller --plain<strong>第6步</strong> - 成功執(zhí)行url后,您將收到以下輸出 -
<img src="/public/core/edit/php/../attached/20231217142144_87634.jpg" alt="" border="0" />
<strong>第7步</strong> - 將以下代碼復(fù)制到 <strong>app / http / abccontroller.php</strong> 文件。
<strong>應(yīng)用程序/ http / abccontroller.php</strong>
namespace app\http\controllers; use illuminate\http\request; use app\http\requests; use app\http\controllers\controller; class abccontroller extends controller { public function index(){ echo " abc controller."; } }<strong>第8步</strong> - 在 <strong>app / http / routes.php</strong> 文件中添加以下代碼行。
<strong>應(yīng)用程序/ http / routes.php文件</strong>
route::get('terminate',[ 'middleware' => 'terminate', 'uses' => 'abccontroller@index', ]);<strong>第9步</strong> - 訪問以下url以測(cè)試可終止的中間件。
http://localhost:8000/terminate<strong>第10步</strong> - 輸出將顯示如下圖所示。
<img src="/public/core/edit/php/../attached/20231217142226_55307.jpg" alt="" border="0" />
<h3><a href="/s7900103/laravel 命名空間.html">下一節(jié):laravel 命名空間</a></h3> <h3><a href="/php/php_sz/180.html">laravel 教程</a></h3>
- CodeIgniter 錯(cuò)誤處理
- CodeIgniter 發(fā)送電子郵件
- CodeIgniter 表單驗(yàn)證
- CodeIgniter 常用函數(shù)
- CodeIgniter 基準(zhǔn)測(cè)試
- CakePHP 查看元素
- CakePHP 查看記錄
- CakePHP 錯(cuò)誤和異常處理
- CakePHP 國(guó)際化
- FuelPHP 應(yīng)用程序
- FuelPHP 演示者
- FuelPHP 事件
- FuelPHP 分析器
- Laravel 中間件
- Laravel 控制器
- Laravel視圖
- Laravel Blade 模板
- Laravel 授權(quán)
- Laravel 加密
- Laravel 歷史版本記錄