laravel 中間件
中間件充當請求和響應之間的橋梁。這是一種過濾機制。本章向您解釋laravel中的中間件機制。
laravel包含一個中間件,用于驗證應用程序的用戶是否已通過身份驗證。如果用戶通過身份驗證,則會重定向到主頁,否則重定向到登錄頁面。
中間件可以通過執行以下命令來創建 -
php artisan make:middleware <middleware-name> </middleware-name>
將 < middleware-name>替換為 中間件的名稱 。您創建的中間件可以在 app / http / middleware 目錄中看到。
例
觀察以下示例以了解中間件機制 -
第1步 - 讓我們現在創建agemiddleware。 要創建它,我們需要執行以下命令 -
php artisan make:middleware agemiddleware
第2步 - 成功執行該命令后,您將收到以下輸出 -
第3步 - agemiddleware 將在 app / http / middleware中 創建。新創建的文件將為您創建以下代碼。
namespace app\http\middleware; use closure; class agemiddleware { public function handle($request, closure $next) { return $next($request); } }</pre--><h2>注冊中間件</h2>
在使用之前,我們需要注冊每個中間件。laravel中有兩種類型的中間件。
<ul> <li>全球中間件</li> <li>路由中間件</li> </ul>在 <strong>全球中間件</strong> 將應用的每個http請求運行,而 <strong>路由中間件</strong> 將被分配到一個特定的路線。中間件可以在 <strong>app / http / kernel.php上注冊。</strong> 該文件包含兩個屬性 <strong>$ middleware</strong> 和 <strong>$ routemiddleware</strong> 。 <strong>$ middleware</strong> 屬性用于注冊全局中間件, <strong>$ routemiddleware</strong> 屬性用于注冊路由特定中間件。
要注冊全局中間件,請在$ 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, ];要注冊路由特定中間件,請將密鑰和值添加到$ routemiddleware屬性中。
protected $routemiddleware = [ 'auth' => \app\http\middleware\authenticate::class, 'auth.basic' => \illuminate\auth\middleware\authenticatewithbasicauth::class, 'guest' => \app\http\middleware\redirectifauthenticated::class, ];<h3>例</h3>我們在前面的例子中創建了 <strong>agemiddleware</strong> 。我們現在可以在路由特定的中間件屬性中注冊它。下面顯示了該注冊的代碼。
以下是 <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>中間件參數</h2>
我們也可以通過中間件傳遞參數。例如,如果您的應用程序具有不同的角色,如用戶,管理員,超級管理員等,并且您希望基于角色對操作進行身份驗證,則可以通過向中間件傳遞參數來實現此操作。我們創建的中間件包含以下函數,我們可以在 <strong>$ next</strong> 參數后傳遞我們的自定義參數。
public function handle($request, closure $next) { return $next($request); }<h3>例</h3><strong>第1步</strong> - 通過執行以下命令創建rolemiddleware -
php artisan make:middleware rolemiddleware<strong>第2步</strong> - 成功執行后,您將收到以下輸出 -
<img src="/public/core/edit/php/../attached/20231217141745_94152.jpg" alt="" border="0" />
<strong>第3步</strong> - 在新創建的rolemiddlewareat <strong>應用/ 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> 文件中注冊 <strong>rolemiddleware</strong> 。添加該文件中以灰色突出顯示的行來注冊rolemiddleware。
<img src="/public/core/edit/php/../attached/20231217141824_77722.jpg" alt="" border="0" />
<strong>第5步</strong> - 執行以下命令來創建 <strong>testcontroller</strong> -
php artisan make:controller testcontroller --plain<strong>第6步</strong> - 成功執行上述步驟后,您將收到以下輸出 -
<img src="/public/core/edit/php/../attached/20231217141927_21931.jpg" alt="" border="0" />
<strong>第7步</strong> - 將以下代碼行復制到 <strong>app / http / testcontroller.php</strong> 文件中。
<strong>應用程序/ 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>應用程序/ http / routes.php文件</strong>
route::get('role',[ 'middleware' => 'role:editor', 'uses' => 'testcontroller@index', ]);<strong>第9步</strong> - 訪問以下url以使用參數測試中間件
http://localhost:8000/role<strong>第10步</strong> - 輸出將顯示如下圖所示。
<img src="/public/core/edit/php/../attached/20231217142002_35834.jpg" alt="" border="0" />
<h2>可終止的中間件</h2>
響應已發送到瀏覽器后,終止中間件執行一些任務。這可以通過在中間件中使用 <strong>terminate</strong> 方法創建中間件來完成。終止中間件應該注冊到全局中間件。terminate方法將接收兩個參數 <strong>$ request</strong> 和 <strong>$ response。</strong> 可以按照以下代碼中所示創建終止方法。
<h3>例</h3><strong>第1步</strong> - 通過執行以下命令創建 <strong>terminatemiddleware</strong> 。
php artisan make:middleware terminatemiddleware<strong>第2步</strong> - 上述步驟將產生以下輸出 -
<img src="/public/core/edit/php/../attached/20231217142033_92770.jpg" alt="" border="0" />
<strong>第3步</strong> - 將以下代碼復制到 <strong>app / http / middleware / terminatemiddleware.php中</strong> 新創建的 <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> 文件中注冊 <strong>terminatemiddleware</strong> 。添加該文件中以灰色突出顯示的行來注冊terminatemiddleware。 <em>**</em>
<img src="/public/core/edit/php/../attached/20231217142107_45919.jpg" alt="" border="0" />
<strong>第5步</strong> - 執行以下命令創建 <strong>abccontroller</strong> 。
php artisan make:controller abccontroller --plain<strong>第6步</strong> - 成功執行url后,您將收到以下輸出 -
<img src="/public/core/edit/php/../attached/20231217142144_87634.jpg" alt="" border="0" />
<strong>第7步</strong> - 將以下代碼復制到 <strong>app / http / abccontroller.php</strong> 文件。
<strong>應用程序/ 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>應用程序/ http / routes.php文件</strong>
route::get('terminate',[ 'middleware' => 'terminate', 'uses' => 'abccontroller@index', ]);<strong>第9步</strong> - 訪問以下url以測試可終止的中間件。
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">下一節:laravel 命名空間</a></h3> <h3><a href="/php/php_sz/180.html">laravel 教程</a></h3>