Laravel 从给定 URL 获取路线
Laravel get route from given URL
Laravel。如何从给定 URL 获取路线。我知道这个答案:
如果您出于某种原因为我的应用程序设置了错误的 URI,这种方式对我没有帮助 return 404 视图。我只需要 return 类似 null
的东西
https://laracasts.com/discuss/channels/laravel/how-to-get-a-route-from-uri
try {
$url = 'url';
$route = app('router')->getRoutes()->match(app('request')->create($url))
} catch (NotFoundHttpException $e) {
$route = null;
}
如果是non-get条路线:
$method = 'POST';
$url = 'url';
$route = app('router')->getRoutes()->match(app('request')->create($url , $method))
Laravel。如何从给定 URL 获取路线。我知道这个答案:
如果您出于某种原因为我的应用程序设置了错误的 URI,这种方式对我没有帮助 return 404 视图。我只需要 return 类似 null
的东西https://laracasts.com/discuss/channels/laravel/how-to-get-a-route-from-uri
try {
$url = 'url';
$route = app('router')->getRoutes()->match(app('request')->create($url))
} catch (NotFoundHttpException $e) {
$route = null;
}
如果是non-get条路线:
$method = 'POST';
$url = 'url';
$route = app('router')->getRoutes()->match(app('request')->create($url , $method))