0

我正在通过 Twigcode 将 CMS 中的数据渲染到控制器,控制器渲染一个树枝模板。我想要目前的路线。我已经尝试使用:

// Controller
$request = $this->container->get('request');
$routeName = $request->get('_route');

// or Twigtemplate
{{ app.request.attributes.get('_route') }}

但结果是“_internal”。我该如何解决这个问题?

4

1 回答 1

0

您忘记了pathTwig 模板中对 Twig 函数的调用!

{{ path(app.request.attributes.get('_route')) }}

代替

{{ app.request.attributes.get('_route') }}

希望能帮助到你!

于 2013-01-07T11:07:38.837 回答