在Symfony2中将参数传递给控制器

时间:2012-05-15 16:28:09

标签: forms symfony twig

我正在开发一个使用Symfony 2和Twig进行模板化的应用程序。我想知道如何将参数传递给表单操作中的操作。我这样写:

 <form action="{{ path('AnotatzaileaAnotatzaileaBundle_Interpretatu') with {{Argument}}  }}" method="post" {{ form_enctype(form) }} class="erreg">

但这不正确。为什么不工作?

1 个答案:

答案 0 :(得分:1)

将参数传递给路径的第二个参数:

path('AnotatzaileaAnotatzaileaBundle_Interpretatu', 
    { "key": "value", "another key": "another value" })

(仅为清晰起见添加了换行符)。