本篇文章为大家展示了怎么在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框架中实现路由管理,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。