這篇文章要跟大家介紹的內容是關於laravel中路由的程式碼實例介紹,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
路由簡介
請求轉換給程式
作用:url和程式之間的映射
請求方式post get put patch delete
eg:
//get请求 Route::get('basic1',function(){ return 'hello world'; }); //多种请求 //指定请求方式 Route::match(['get','post'],'match',function(){ return 'match'; }); //不指定 Route::any('any',function(){ return 'any'; }); //路由参数 Route::get('user/{id}',function($id){ return 'User-'.$id; }); Route::get('user/{id?}/{name?}',function($id,$name){ return 'User-name-'.$name; })->where(['id'=>'[0-9]+','name'=>'[A-Za-z]+']); //请求的路由 http://localhost/public/user/1/w
//路由的别名 Route::get('user/member-center',['as'=>'center',function(){ return route('center'); }]); //路由群组 //prefix 前缀 Route::group(['prefix'=>'member'],function(){ Route::get('user/center',['as'=>'center',function(){ return route('center'); }]); Route::get('user/person',['as'=>'person',function(){ return route('person'); }]); }); //路由中输出view Route::get('view', function () { return view('welcome'); });
以上就是這篇文章的全部內容了。
相關推薦:
laravel5.5框架中視圖間如何共享資料?視圖間共享資料的兩種方法(附程式碼)
#以上是laravel中路由的程式碼實例介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!