首頁 > php框架 > Laravel > 主體

一起來聊聊Laravel8的路由與控制器

WBOY
發布: 2022-05-24 11:55:08
轉載
2674 人瀏覽過

這篇文章為大家帶來了關於laravel的相關知識,其中主要介紹了關於路由和控制器的相關問題,包括了路由組、跳到控制器、post路由、Ajax路由等等相關內容,下面一起來看一下,希望對大家有幫助。

一起來聊聊Laravel8的路由與控制器

【相關建議:laravel影片教學

laravel存取路徑是:
1 ) 路由—控制器—頁面/輸出
2 ) 路由—匿名函數—頁面/輸出

一、查看目前所有路由

進入目前專案的根目錄之後執行cmd
或用IDE自帶的終端Terminal,快捷鍵ALT F12

 php artisan route:list
登入後複製

一起來聊聊Laravel8的路由與控制器

#二、各種路由

在routes/web.php檔案

我網域是www.la.com,按自己實際狀況來

#1.跳到視圖

Route::get('/', function () {
    return view('welcome');});
登入後複製

檢視目錄位置:resources/views ,存放的也是HTML 內容。 view()是一個助手函數,view(‘welcome’) 表示跳到welcome.blade.php視圖,也就是我們第一次啟動 Laravel 看到的那個歡迎頁面。

在瀏覽器網址列寫:www.la.com/ ,運行結果為:
一起來聊聊Laravel8的路由與控制器

2.直接輸出

Route::get('ok', function () {
    echo "hello world";});
登入後複製

一起來聊聊Laravel8的路由與控制器

3.帶參數的的路由

dump()是laravel的輔助函數,用來列印資料的

1)單一參數

Route::get('show/{a}', function ($a) {
    dump($a);});
登入後複製

瀏覽器執行http://www.la.com/show/1
結果:「1」
注意:是字串

# 2)多個參數

Route::get('show/{a}/{b}', function ($a,$b) {
   echo $a.','.$b;});
登入後複製

瀏覽器運行:http://www.la.com/show/1/hello
結果:1,hello

4.路由參數新增限定正規表示式

Route::get('user/{name}/{age}', function ($name,$age) {
 echo $name.' '.$age; //直接输出 
 })->where('age','\d+')->where('name','[a-zA-Z]+');
登入後複製

上述限定的意思是age 參數只能接受數字,name 參數只能接受大小寫字母。

如果不符合條件,結果:404 NOT FOUND

瀏覽器中執行:http://www.la.com/user/zhangsan/18
結果:zhangshan 18

5.路由群組

1)第一種寫入法Route::group(array('prefix'=>'user'),function(){});

Route::group(array('prefix'=>'user'),function(){
    Route::get('/index', function () {
        echo 'index';
    });
    Route::get('/add', function () {
        echo 'add';
    });});
登入後複製

瀏覽器運行:

  • http://www.la.com/user/index
  • #http://www.la.com/user/add

結果:

  • index
  • add

#2)第二種寫法Route::prefix('user') ->group(function(){});

Route::prefix('user')->group(function(){
    Route::get('/index', function () {
        echo 'index';
    });
    Route::get('/add', function () {
        echo 'add';
    });});
登入後複製

6.跳到控制器

1)建立控制器,寫方法

在專案根目錄運行

php artisan make:controller TestController
登入後複製

一起來聊聊Laravel8的路由與控制器

<?phpnamespace  App\Http\Controllers;use Illuminate\Http\Request;class TestController extends Controller{
    public function hello(){
        echo "TestController的hello方法";
    }}
登入後複製

2)寫入路由

在config/web.php最開始加入

use App\Http\Controllers\TestController;
登入後複製

然後寫入路由

Route::get('/hello',[TestController::class,'hello']);//跳到控制器的方法
登入後複製

瀏覽器運行:http://www.la.com/hello
結果:
一起來聊聊Laravel8的路由與控制器

#7.POST路由

laravel中為了防止csrf攻擊,我們在每一個post表單裡面都要寫上一句@csrf ,詳細可以點擊看我另一篇文章

  1. 我們先在views/user資料夾新增一個add.blade.php檢視

裡面程式碼:

nbsp;html>
    <title>测试POST提交</title>
    
登入後複製
        @csrf         name:              
  1. 新增路由
use Illuminate\Http\Request;Route::prefix('user')->group(function(){
    Route::get('/add', function () {
       return view('user.add');
    });
    Route::post('/insert', function (Request $request) {
        dump($request->all());
        echo "post路由验证成功";
    });});
登入後複製

view('user.add')的意思是在resources/views目錄下的user資料夾下的add視圖。 (resources/views是預設路徑)
$request->all()取得所有請求參數
dump() 列印資料
一起來聊聊Laravel8的路由與控制器

  1. #測試
    先直接輸入http://www.la.com/user/insert肯定是不行的,會報錯(The GET method is not supported for this route. Supported methods: POST .)。
    Postman 輸入http://www.la.com/user/insert post提交失敗返419 | Page Expired
    一起來聊聊Laravel8的路由與控制器

所以我們先瀏覽器輸入http:/ /www.la.com/user/add ,name隨便填啥點提交
一起來聊聊Laravel8的路由與控制器

#8.Ajax路由

##頭要加入

透過js,傳遞token,這裡name="_token" 隨便取什麼名

headers: {
‘X-CSRF-TOKEN’: $(‘meta[name="_token"]’).attr(‘content’)
},

nbsp;html>
    <meta>
    <title>CSRF</title>
    <meta><script></script><script>
    $.ajax({
        url: "http://www.la.com/index",//本页面
        type: "POST",
        data: {
            name:"名字"
        },
        headers: {
            &#39;X-CSRF-TOKEN&#39;: $(&#39;meta[name="_token"]&#39;).attr(&#39;content&#39;)
        },
        success: function (data) {
            console.log("200");
        }
    });</script>
登入後複製

9.带别名的路由

别名路由就是给某一个路由起一个别名,直接使用使用原名可以访问路由,但直接使用别名不能访问这个路由,同时在其他页面调用别名可以访问这个路由。

Route::get('user/profile',function(){ 
	return 'my url:'.route('profile');})->name('profile'); 	//创建一个路由 user/profile,这个路由的作用是返回路由 profile 的 RUL 地址,并给这个路由起一个别名 profile Route::get('redirect',function(){ 
	return redirect()->route('profile'); }); 	//创建一个名为 redirect 的路由,这个路由的作用是跳转到路由 profile。
登入後複製

route() 生成完整的URL
redirect()->route(‘profile’); //重定向命名路由

在浏览器中运行 www.la.com/user/profile
结果:一起來聊聊Laravel8的路由與控制器
在浏览器中运行www.la.com/profile
结果:404 NOT FOUND

在浏览器中运行www.la.com/redirect
结果:一起來聊聊Laravel8的路由與控制器

10.命名空间路由

之前写的控制器 Controller 都直接写在 Http\Controllers 文件夹之中,但实际情况是控制器也会分类,比如与管理员相关的操作会在 Controllers 中,再建一个文件夹 Admin,然 后把所有关于管理员的控制器类都放在这个文件夹中。如果这样的话,就要添加名称空间。

  1. 创建控制器
    方法一:使用phpartisan
php artisan make:controller Admin\IndexController
登入後複製

使用这种方法创建的控制器,自动加载名称空间,如下图所示
观察与之前创建控制器php artisan make:controller TestController的区别
一起來聊聊Laravel8的路由與控制器
方法二:复制粘贴其他类
在Controllers文件夹下创建Admin文件夹,复制之前创建的控制器TestController,照着上图修改。

命名空间 namespace App\Http\Controllers\Admin;
添加类引用 use App\Http\Controllers\Controller;

  1. 控制器添加 index方法
public function index(){
       return "Admin文件夹下的IndexController中的index方法";}
登入後複製
  1. 写路由
    web.php文件
use App\Http\Controllers\Admin\IndexController;Route::group(['namespace'=>'Admin'],function(){
    Route::get('admin',[IndexController::class,'index']);//管理员的主页
    Route::get('admin/user',[IndexController::class,'index']);//管理员用户相关
    Route::get('admin/goods',[IndexController::class,'index']);//商品相关});
登入後複製

浏览器输地址
http://www.la.com/admin
http://www.la.com/admin/user
http://www.la.com/admin/goods
结果都是一样

【相关推荐:laravel视频教程

以上是一起來聊聊Laravel8的路由與控制器的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板