如何在 Laravel 中检索当前路由名称(v5 - v7)
在以前的 Laravel 版本中,访问当前路由名称非常简单使用 Route::currentRouteName()。然而,在 Laravel v5 及更高版本中,这种方法已经演变。
以下是如何获取当前路由名称:
Laravel v5
可以使用以下方法:
- Route::getCurrentRoute()->getPath();
- Request::route()->getName () (自 v5.1 起可用)
Laravel v5.2
重新引入 Route::currentRouteName();方法(使用 IlluminateSupportFacadesRoute;)方便。
Laravel v5.3 - v5.8
直接提取路线信息:
- $route = 路线::current();
- $name = 路线::currentRouteName();
- $action = 路线::currentRouteAction();
Laravel v6.x - v7.x
类似于 Laravel v5.3 - v5.8:
- $route = Route::current() ;
- $name = 路线::currentRouteName();
- $action = 路线::currentRouteAction();
附加说明:
- Laravel 5.2 文档提供了有关 Route::current() 和 Route::getCurrentRouteAction() 的详细信息:https://laravel.com/docs/5.2/routing#retriving-the-current -route
- Laravel 5.3 文档解释 Route::currentRouteName() 和 Route::currentRateAction():https://laravel.com/docs/5.3/routing#accessing-the-route-instance-and-相关信息
- Laravel 6.x 文档维护相同的方法:https://laravel.com/docs/6.x/routing#retriving-the-current-route-and-parameters
- 请求类还提供了检索路由名称的替代方法:$request->route()->getName();
以上是如何在 Laravel 中获取当前的路由名称?的详细内容。更多信息请关注PHP中文网其他相关文章!