laravel: 路由

a. 基础路由

Route::get('/index','IndexController@index');//接受get 请求

Route::post('/index','IndexController@index');//接受post 请求

Route::match(['post','get'],'/index','IndexController@index');//接受post get两种http请求

Route::any('/index','IndexController@index');//接受任何方式的http请求

b.路由命名

Route::get('/index','IndexController@index')->name('index');

Route::get('/index',['as'=>'index','uses'=>'IndexController@index']);

$url = route('index');//获取index路由的url地址

redirect()->route('index');//跳转index路由

c.路由参数 

Route::get('/index/{id}',function($id){

     return $id;//获取必传id参数

});

Route::get('/index/{id?}',function($id=1){
    return $id //获取非必传参数id
});

Route::get('/index/{id}','IndexController@index')->where('id','[0-9]+');// 参数正则验证

d.路由分组(url前缀,命名空间嵌套,中间件的使用)

路由分组可以使得分组中路由共享路由属性,不必每个路由都要设置

Route::group(['prefix'=>'v2','namespace'=>'Home','middleware'=>'auth'],function(){
    //http://localhost/v2/index 访问App/https/Controllers/Home/IndexController控制器 index方法
    Route::get('/index','IndexController@index');
})

e.路由缓存

php  artisan route:cache //生成路由缓存

php  artisan route:clear  //清除路由缓存 一般使用部署前 重新生成路由缓存
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值