-1

テンプレート用にSymfony2とTwigを使用してアプリケーションを開発しています。フォームアクションからアクションに引数を渡す方法を知りたいです。私はそれをこのように書きます:

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

しかし、それは正しくありません。なぜwithが機能しないのですか?

4

1 に答える 1

1

パラメータをパスの2番目のパラメータに渡します。

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

(改行は明確にするためにのみ追加されています)。

于 2012-05-15T16:58:51.197 に答える