Laravel 路由使用get post any match 与匹配一个路径路由

Posted 安果移不动

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel 路由使用get post any match 与匹配一个路径路由相关的知识,希望对你有一定的参考价值。

<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/', function () 
    return view('welcome');
);
#可以访问
//Route::get('index', function() 
//    return 'Hello Laravel';
//);
//可以访问 any匹配任何网络请求
/// //Route::any('index', function() 
//    return 'Hello Laravel';
//);
//同时匹配get  post
//Route::match(['get', 'post'], 'index', function () 
//    return 'Hello Laravel';
//);


Route::get('index/id', function($id) 
    return 'Hello Laravel'.$id;
);

 教程来自bilibili 

【李炎恢】【Laravel / 核心篇 / PHP框架 / 阶段一】【十天精品课堂系列】【已完结 / 47P】_哔哩哔哩_bilibili

以上是关于Laravel 路由使用get post any match 与匹配一个路径路由的主要内容,如果未能解决你的问题,请参考以下文章

laravel 基础知识总结

laravel报错MethodNotAllowedHttpException

Laravel5.7 路由使用 Route:match 不起作用

laravel 控制器多个方法共用一个路由

错误:此路由不支持 POST 方法。支持的方法:GET、HEAD。 - 使用 laravel livewire

在 Laravel auth 中,该路由不支持 POST 方法。支持的方法:GET、HEAD