将参数传递给 Symfony 2.8 中的嵌入式控制器

Passing arguments to an embedded controller in Symfony 2.8

我正在使用 Symfony 2.8.0(因为我发现 Symfony 3.x 目前还不是很成熟,但我们现在不讨论这个问题)。

根据官方文档 (http://symfony.com/doc/2.8/book/templating.html#embedding-controllers) 应该可以将参数传递给从视图中调用的嵌入式控制器。

但是,这似乎不起作用。我总是以以下异常结束:

"Controller "AppBundle\Controller\DefaultController::buildNavigationAction()" requires that you provide a value for the "$argument1" argument (because there is no default value or because there is a non optional argument after this one)."

在我看来,我有以下代码:

{{ render(controller('AppBundle:Default:buildNavigation'), {
    'argument1': 25,
    'argument2': 50
}) }}

控制器看起来像这样:

public function buildNavigationAction($argument1, $argument2)
{
    // ... some logic ...

    return $this->render(
        'navigation.html.twig', array(
            'foo' => $argument1,
            'bar' => $argument2
        )
    );
}

什么给了?这是一个错误吗?

文档中描述的用例(从基本模板中呈现动态内容,因此在每个页面上呈现动态内容)正是我使用它的目的。在每个控制器中重复相同的逻辑显然违反了 DRY 原则。

您的语法不正确,因为您没有将值传递给控制器​​,因为您过早地关闭了 )。它应该是:

{{ render(controller('AppBundle:Default:buildNavigation', {
    'argument1': 25,
    'argument2': 50
})) }}