我正在开发一个使用Symfony 2和Twig进行模板化的应用程序。我想知道如何将参数传递给表单操作中的操作。我这样写:
<form action="{{ path('AnotatzaileaAnotatzaileaBundle_Interpretatu') with {{Argument}} }}" method="post" {{ form_enctype(form) }} class="erreg">
但这不正确。为什么不工作?
答案 0 :(得分:1)
将参数传递给路径的第二个参数:
path('AnotatzaileaAnotatzaileaBundle_Interpretatu',
{ "key": "value", "another key": "another value" })
(仅为清晰起见添加了换行符)。