首頁 >後端開發 >php教程 >在Laravel的@if語句中如何取得目前URL?

在Laravel的@if語句中如何取得目前URL?

PHPz
PHPz轉載
2023-08-23 14:13:391038瀏覽

在Laravel的@if語句中如何取得目前URL?

要取得目前URL,可以使用下面範例中解釋的方法−

範例1

<?php namespace AppHttpControllers; use IlluminateHttpRequest; use AppModelsUser; use IlluminateHttpResponse; class UserController extends Controller { public function index(Request $request) { return view('test'); } } 

test.blade.php 是−

<!DOCTYPE html> <html> <head> <style> body {
         font-family: 'Nunito', sans-serif;
      } </style> </head> <body class="antialiased"> <div> @if (Request::path() == 'users') <h1>The path is users</h1> @endif </div> </body> </html> 

test.blade.php 檔案中,使用 Request::path() 來檢查是否指向用戶,然後只顯示 h1 標籤。 Request::path() 傳回目前正在使用的 URL

範例2

在這個範例中,讓我們使用 url()->current() 方法,如下面的範例所示。 url()->current() 傳回目前URL的完整路徑。

<?php namespace AppHttpControllers; use IlluminateHttpRequest; use AppModelsUser; class UserController extends Controller { public function index(Request $request) { return view('test'); } } 

Test.blade.php

<!DOCTYPE html> <html> <head> <style> body {
         font-family: 'Nunito', sans-serif;
      } </style> </head> <body class="antialiased"> <div> @if (url()->current() == 'http://localhost:8000/users') <h1>The path is users</h1> @endif </div> </body> </html> 

執行上面的範例時,它會在瀏覽器上列印以下內容−

The path is users

範例3

在這個範例中,我們將使用 Request::url()。它的輸出與 url()->current() 相同,它會傳回完整的URL,如下面的範例所示−

<?php namespace AppHttpControllers; use IlluminateHttpRequest; use AppModelsUser; class UserController extends Controller { public function index(Request $request) { return view('test'); } } 

Test.blade.php

<!DOCTYPE html> <html> <head> <style> body { font-family: 'Nunito', sans-serif; } </style> </head> <body class="antialiased"> <div> @if (Request::url() == 'http://localhost:8000/users') <h1>The path is users</h1> @endif </div> </body> </html> 

執行上面的範例時,它會在瀏覽器上列印以下內容−

The path is users

範例4

使用 Request::is()

<?php namespace AppHttpControllers; use IlluminateHttpRequest; use AppModelsUser; class UserController extends Controller{ public function index(Request $request) { return view('test'); } } 

Test.blade.php

<!DOCTYPE html> <html> <head> <style> body { font-family: 'Nunito', sans-serif; } </style> </head> <body class="antialiased"> <div> @if (Request::is('users')) <h1>The path is users</h1> @endif </div> </body> </html> 

在上面的範例中,Request::is() 被使用。它會傳回 true/false,表示給定的字串是否存在於 URL 中。

執行上面的範例時,它會在瀏覽器上列印以下內容−

The path is users


#

以上是在Laravel的@if語句中如何取得目前URL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除