将数据从控制器传递到类型symfony2

时间:2011-10-18 12:43:58

标签: symfony

如果我在我的表单中显示“entity”类型的字段,并且我想根据从控制器传递的参数过滤此实体类型,我该怎么做..?

//PlumeOptionsType.php
public function buildForm(FormBuilder $builder, array $options)
{
    $builder->add('framePlume', 'entity', array(
        'class' => 'DessinPlumeBundle:PhysicalPlume',
        'query_builder' => function(EntityRepository $er) {
                                return $er->createQueryBuilder('pp')
                                    ->where("pp.profile = :profile")
                                    ->orderBy('pp.index', 'ASC')
                                    ->setParameter('profile', ????)
                                ;
                            },

    ));
}

public function getName()
{
    return 'plumeOptions';
}

public function getDefaultOptions(array $options)
{
    return array(
            'data_class'      => 'Dessin\PlumeBundle\Entity\PlumeOptions',
            'csrf_protection' => true,
            'csrf_field_name' => '_token',
            // a unique key to help generate the secret token
            'intention'       => 'plumeOptions_item',
    );
}
}

并在控制器内部创建表单:

i have that argument that i need to pass in my action code:
$profile_id = $this->getRequest()->getSession()->get('profile_id');
...
and then i create my form like this
$form = $this->createForm(new PlumeOptionsType(), $plumeOptions);

$ plumeOptions只是一个要坚持的类。但它与另一个名为PhysicalPlume的类有一对一的关系。现在,当我想在我的代码中显示'framePlume'时,我想显示一个过滤的PhysicalPlume实体。

2 个答案:

答案 0 :(得分:40)

您可以将参数传递给表单类,如下所示:

//PlumeOptionsType.php
protected $profile;

public function __construct (Profile $profile)
{
    $this->profile = $profile;
}

然后在buildForm的query_builder中使用它:

$profile = $this->profile;

$builder->add('framePlume', 'entity', array(
    'class' => 'DessinPlumeBundle:PhysicalPlume',
    'query_builder' => function(EntityRepository $er) use ($profile) {
                            return $er->createQueryBuilder('pp')
                                ->where("pp.profile = :profile")
                                ->orderBy('pp.index', 'ASC')
                                ->setParameter('profile', $profile)
                            ;
                        },

));

最后在你的控制器中:

// fetch $profile from DB
$form = $this->createForm(new PlumeOptionsType($profile), $plumeOptions);

答案 1 :(得分:4)

您可以使用$plumeOptions传递论据的所有内容,但您需要在getDefaultOptions()中添加PlumeOptionsType来指定您选项的默认值。 例如,请参阅https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Form/Extension/Core/Type/CheckboxType.php以查看此方法的外观。