欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Laravel框架路由管理简单示例

程序员文章站 2022-11-15 23:15:17
本文实例讲述了laravel框架路由管理。分享给大家供大家参考,具体如下: 路由中输出视图 route::get('/', function () { r...

本文实例讲述了laravel框架路由管理。分享给大家供大家参考,具体如下:

路由中输出视图

route::get('/', function () {
  return view('welcome');
});

get路由请求

route::get('get',function(){
  return 'get路由请求';
});

post路由请求

route::post('post',function(){
  return 'post请求';
});

多路由请求

route::match(['get','post'],'match',function(){
  return '多路由请求';
});

任意路由请求

route::any('any',function(){
  return '任意路由请求';
});

路由参数

route::get('user/{id}',function($id){
  return 'user-id-'.$id;
});

路由参数默认值

route::get('user/{name?}',function($name = 'yxh'){
  return 'user-name-'.$name;
});

路由参数的正则验证

route::get('user/{id}/{name?}',function($id,$name = 'yxh'){
  return 'user-id-'.$id.'-name-'.$name;
})->where(['id'=>'[0-9]+','name'=>'[a-za-z]+']);

路由别名

route::get('user/member-center',['as'=>'center',function(){
  return route('center');
}]);

路由群组

route::group(['prefix'=>'member'],function(){
  //路由别名
  route::get('user/member-center',['as'=>'center',function(){
    return route('center');
  }]);
  //任意路由请求
  route::any('any',function(){
    return '任意路由请求';
  });
});

路由中输出视图

route::get('view',function(){
  return view('welcome');
});

关联控制器

route::get('member/info','membercontroller@info');
route::get('test','usercontroller@test');
route::get('query','usercontroller@query');
route::get('orm','usercontroller@orm');
route::get('section1',['uses'=>'usercontroller@section1']);
route::get('url',['as'=>'url','uses'=>'usercontroller@urltest']);

更多关于laravel相关内容感兴趣的读者可查看本站专题:《laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家基于laravel框架的php程序设计有所帮助。