PHP Laravel的几个疑问,关于路由控制的
1个回答
展开全部
常规路由或者说是基础路由,支持HTTP Method 或者正则匹配等,还有就是自定义
Route::get('xxx',xxx); Route::get('xxx/*',xxx); Route::post('xxx',function(){ xxxx }); Route::get('/', 'DashBoardController@index');
对应各种HTTP Method目前支持的有
get
post
put
patch
options
delete
匹配路由
match
any
自定义
Route::get('user', 'UserController@index');
这里是你访问xxx/user 的时候会调用 UserController中的index 方法
Route::get('xxx',xxx); Route::get('xxx/*',xxx); Route::post('xxx',function(){ xxxx }); Route::get('/', 'DashBoardController@index');
对应各种HTTP Method目前支持的有
get
post
put
patch
options
delete
匹配路由
match
any
自定义
Route::get('user', 'UserController@index');
这里是你访问xxx/user 的时候会调用 UserController中的index 方法
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询