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.
我正在开发一个使用 Symfony2 和 Twig 模板的应用程序。我想知道的是如何从控制器中呈现的 Twig 模板接收控制器中的参数。该参数将具有 HTML 标记属性的值。此值将分配给 HTML 标记上的 onClick 事件中提到的参数。谢谢。
你可以这样做:
{% render 'YourBundle:YourController:yourAction' with { 'yourVariableName': variableValue } %}
其中 yourVariableName 与 yourAction 期望的变量相同。