Symfony2 FormType实体字段类型

时间:2014-12-12 09:15:40

标签: php forms symfony orm entity

我有三个实体。 ProfileCarTrip。当用户(Profile)创建Trip时,他可以选择Car(仅限他自己的)并将其分配给Trip。我知道该字段必须是实体类型。但我不知道如何设置选择列出当前用户的汽车(配置文件)。有任何想法吗?感谢。

3 个答案:

答案 0 :(得分:1)

按用户过滤汽车,我认为这个例子就是您所需要的:

$builder->add('car', 'entity', array(
    'class'         => '/path/to/entity/Car',
    'property'      => 'title',
    'empty_value'   => 'Choose a car',
    'query_builder' => function(EntityRepository $em) use ($userId) {
         return $em->createQueryBuilder('c')
             ->join('c.user', 'u')
             ->where('u.id = :userId')
             ->setParameter('userId', $userId);
         }
    )
)

您可以将$ userId添加为一个表单选项:

$form = $this->createForm(new MyFormType(), $object, array( 'userId' => $userId ));

在表单中检索它:

/**
 * @param OptionsResolverInterface $resolver
 */
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
    $resolver->setDefaults(array(
        'userId' => function (Options $options, $value) {
            return $options['userId'];
        }
    ));
}

/**
 * @param FormBuilderInterface $builder
 * @param array $options
 */
public function buildForm(FormBuilderInterface $builder, array $options)
{
    if($options['userId']){
        $userId = $options['userId'];
    }
 }

答案 1 :(得分:1)

我怎么提到。其他解决方案,即使是个人,我也不喜欢它:

$form = $this->createForm(new MyFormType($userId), $object); 

在您的表单中,将其存储在受保护的变量中,以便稍后在查询中使用:

/**
 * Class MyFormType
 */
 class MyFormType extends AbstractType
 {

     protected $userId;

     /**
      * @param $userId
      */
     public function __construct($userId) {
         $this->userId = $userId;
     }

 }

答案 2 :(得分:0)