黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Laravel 重定向

laravel 重定向

命名路線用于為路線指定具體名稱(chēng)。該名稱(chēng)可以使用 as 數(shù)組鍵進(jìn)行分配。

route::get('user/profile', ['as' => 'profile', function () {
   //
}]);

注意 - 在這里,我們已經(jīng)給 路由 用戶(hù)/配置文件 指定了名稱(chēng) 配置 文件 。

 

重定向到命名路線

觀察下面的例子來(lái)了解更多關(guān)于重定向到命名路由的信息 -

第1步 - 創(chuàng)建一個(gè)名為test.php的視圖并保存在

resources / views / test.php 。

    
      <h1>example of redirecting to named routes</h1>
   

第2步 - 在 routes.php中 ,我們?cè)O(shè)置了 test.php 文件的路由。我們已將其重命名為 測(cè)試 。我們還設(shè)置了另一個(gè)路由 重定向 ,它將請(qǐng)求重定向到指定的路由 測(cè)試 。

應(yīng)用程序/ http / routes.php文件

route::get('/test', ['as'=>'testing',function(){
   return view('test2');
}]);

route::get('redirect',function(){
   return redirect()->route('testing');
});

第3步 - 訪問(wèn)以下url以測(cè)試指定的路由示例。

http://localhost:8000/redirect

第4步 - 執(zhí)行上述url后,您將被重定向到http:// localhost:8000 / test,因?yàn)槲覀冋谥囟ㄏ虻街付ǖ穆酚?測(cè)試 。

第5步 - 成功執(zhí)行url后,您將收到以下輸出 -

virat甘地

 

重定向到控制器操作

不僅命名路由,而且我們也可以重定向到控制器操作。我們只需簡(jiǎn)單地將控制器和 動(dòng)作 名稱(chēng)傳遞給動(dòng)作方法,如下例所示。如果你想傳遞一個(gè)參數(shù),你可以把它作為action方法的第二個(gè)參數(shù)傳遞。

return redirect()->action(‘nameofcontroller@methodname’,[parameters]);

第1步 - 執(zhí)行以下命令來(lái)創(chuàng)建一個(gè)名為 redirectcontroller 的控制器。

php artisan make:controller redirectcontroller --plain

第2步 - 成功執(zhí)行后,您將收到以下輸出 -

第3步 - 將以下代碼復(fù)制到文件中

app / http / controllers / redirectcontroller.php 。

應(yīng)用程序/ http /控制器/ redirectcontroller.php


namespace app\http\controllers;

use illuminate\http\request;
use app\http\requests;
use app\http\controllers\controller;

class redirectcontroller extends controller {
   public function index(){
      echo "redirecting to controller's action.";
   }
}</pre--> 

<strong>第4步</strong> - 在 <strong>app / http / routes.php中</strong> 添加以下行。

<strong>應(yīng)用程序/ http / routes.php文件</strong>

route::get('rr','redirectcontroller@index');
route::get('/redirectcontroller',function(){
   return redirect()->action('redirectcontroller@index');
});

<strong>第5步</strong> - 訪問(wèn)以下url以測(cè)試示例。

http://localhost:8000/redirectcontroller

<strong>第6步</strong> - 輸出將如下圖所示。

<img src="/public/core/edit/php/../attached/20231217140629_55335.jpg" alt="" border="0" />

<h3><a href="/s7900103/laravel 使用數(shù)據(jù)庫(kù).html">下一節(jié):laravel 使用數(shù)據(jù)庫(kù)</a></h3> <h3><a href="/php/php_sz/180.html">laravel 教程</a></h3>
相關(guān)文章