2017-03-10 14 views
1

私のフォームにサービスを使用したいですPRE_SET_DATAイベントリスナー。このフォームはCollectionTypeという別のフォームタイプに埋め込まれています。symfony2 - コレクション型フォームをサービスとして定義する

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); 
    } 
} 

今、私はこれを取得、私はサービスとしてフォームタイプを定義したエンティティマネージャサービスを注入する

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(); 
    } 

    ... 
} 

エラー:

Catchable Fatal Error: Argument 1 passed to IndexBundle\Form\Type\ChildType::__construct() must be an instance of Doctrine\ORM\EntityManager, none given, called in C:\xampp\htdocs\trainingexperience_symfony\vendor\symfony\symfony\src\Symfony\Component\Form\FormRegistry.php on line 90 and defined

どのようにCollectionType埋め込みフォームのエンティティマネージャに渡すことができますか?

答えて

2

フォームとしてサービスをタグ付けする必要があります。

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

・ホープ、このヘルプ

+0

うわーそれはそれです。出来た。ありがとうございます! –

+0

こんにちは@IgnasDamunskisようこそ! – Matteo

関連する問題