passing data from controller to Type symfony2

后端 未结 2 1324
一生所求
一生所求 2020-11-29 03:17

if i show a field of type \"entity\" in my form, and i want to filter this entity type based on a argument I pass from the controller, how do i do that.. ?

/         


        
2条回答
  •  无人及你
    2020-11-29 03:46

    You can use $plumeOptions to pass everything your argument, but you'll need to add a getDefaultOptions() in PlumeOptionsType to specify the default value for your option. See for instance https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Form/Extension/Core/Type/CheckboxType.php to see what this method should look like.

提交回复
热议问题