Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个使用 Symfony 2 和 Twig 进行模板化的应用程序。我想知道如何将参数从表单动作传递给动作。我是这样写的:
<form action="{{ path('AnotatzaileaAnotatzaileaBundle_Interpretatu') with {{Argument}} }}" method="post" {{ form_enctype(form) }} class="erreg">
但这是不正确的。为什么 with 不工作?
将参数传递给路径的第二个参数:
path('AnotatzaileaAnotatzaileaBundle_Interpretatu', { "key": "value", "another key": "another value" })
(为清楚起见添加了换行符)。