2

我想在我的表单PRE_SET_DATA事件监听器中使用服务。现在这个表单被嵌入到另一种表单类型中,如CollectionType.

class ChildType extends AbstractType
{
    private $entitymanager;

    public function __construct(EntityManager $entitymanager)
    {
        $this->entityManager = $entitymanager;
    }

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        ...     

        // Add listeners
        $builder->addEventListener(FormEvents::PRE_SET_DATA, array($this, 'onPreSetData'));
    }

    public function onPreSetData(FormEvent $event)
    {
        $form = $event->getForm();

        ...

        $this->entityManager->flush();
    }

    ...
}

为了注入实体管理器服务,我将表单类型定义为服务:

services:
    form_type_child:
        class: IndexBundle\Form\Type\ChildType
        arguments:
            - @doctrine.orm.entity_manager

现在我必须使用这种形式作为CollectionType

class ParentType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
             ->add('child', CollectionType::class, array(
                'type' => ChildType::class,
                'by_reference' => false,
                'required' => false
             ))
            ->add('submit', SubmitType::class);
    }
}

现在我得到这个错误:

可捕获的致命错误:传递给 IndexBundle\Form\Type\ChildType::__construct() 的参数 1 必须是 Doctrine\ORM\EntityManager 的实例,没有给出,在 C:\xampp\htdocs\trainingexperience_symfony\vendor\symfony\symfony 中调用\src\Symfony\Component\Form\FormRegistry.php 在第 90 行并定义

任何想法如何以CollectionType嵌入式形式传递实体管理器?

4

1 回答 1

2

您需要将服务标记为表单:

services:
    form_type_child:
        class: IndexBundle\Form\Type\ChildType
        arguments:
            - @doctrine.orm.entity_manager
        tags:
            - { name: form.type }

希望这有帮助

于 2017-03-10T16:59:26.523 回答