在 Symfony 服务中获取路由名称

Get the route name in a Symfony service

我正在尝试获取 Symfony 4 服务中当前路由的名称。

routes.yaml

test-route:
    path: /test
    controller: App\Controller\Test::test

服务

class Myservice {

    private $u;

    public function __construct(Utilities $u){

        $this->u = $u;

        $route = getRouteSomehow(); // should return "test-route"
    }
}

我找到了这段代码来抓取路由:

$requestStack->getCurrentRequest()->get('_route');

..但不确定where/how/what注入是否能够使用它。

也许还有更简单的方法。

如果你使用 symfony4 和 autowire (https://symfony.com/doc/current/service_container/autowiring.html),你可以注入 request_stack 服务如下:

use Symfony\Component\HttpFoundation\RequestStack;

class Myservice {

    private $u;

    public function __construct(Utilities $u, RequestStack $requestStack) {

        $this->u = $u;

        $route = $requestStack->getCurrentRequest()->get('_route');
    }
}