Symfony2:如何从自定义验证器中的未映射字段(集合内)中获取数据

时间:2016-07-04 11:49:37

标签: php symfony

我的表格看起来大致如下:首先是ItemType:

class ItemType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('name', TextType::class, array())
            ->add('item_user_role', CollectionType::class, array(
                'entry_type' => 'MyBundle\Form\ItemUserRoleType',
                'allow_add'    => true,
                'mapped' => false,
                'constraints' => array(
                    new ItemUserRole()
                )
            ))
        ;
    }
    ... 
}

然后是ItemUserRoleType:

class ItemUserRoleType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add(
                'id',
                TextType::class,
                array(
                    'mapped' => false,
                    'constraints' => array(),
                )
            )
            ->add('roleid',  EntityType::class, array(
                'class' => 'MyBundle\Entity\Role',
                'placeholder' => 'Select Role',
                'required' => false,
                'choice_label' => 'name',
                'multiple' => false,
                'expanded' => false,
                'constraints' => array(
                    new NotNull(),
                    new NotBlank()
                )
            ))
            ->add('userid',  EntityType::class, array(
                'class' => 'MyBundle\Entity\User',
                'required' => false,
                'choice_label' => 'LastName',
                'multiple' => false,
                'expanded' => false,
                'constraints' => array(
                    new NotNull(),
                    new NotBlank()
                )
            ))
        ;
    }
}

我想要实现的是提交的表单可以只包含userid和roleid(用于创建新的ItemUserRole)或包含id(用于编辑现有的ItemUserRole)。

我的问题是,在我的自定义Validator“ItemUserRole”中,我需要访问ID以确定是否设置了ID,然后允许用户修改它。但由于它没有映射,我还没有发现如何做到这一点。

我试过的是:

class ItemUserRoleValidator extends ConstraintValidator
{
    public function validate($value, Constraint $constraint)
    {
        $tmp = $this->context->getRoot()->get('item_user_role')->getData()[0];
        var_dump($tmp->getId());
        return;
    }
}

但是返回NULL。任何提示?提前致谢。

1 个答案:

答案 0 :(得分:0)

使用$ value变量。

class ItemUserRoleValidator extends ConstraintValidator
{
    public function validate($value, Constraint $constraint)
    {
        $tmp = $value[0];
        var_dump($tmp->getId());
        return;
    }
}

$ this-> context,不包含任何表单数据,但是此时发现的所有约束违规的集合。