0

やりたいこと: コレクションに埋め込まれた formType からフィールドにアクセスしようとしています。最初のレベルに簡単にアクセスできます (コレクションを取得します)$form->get('childType')が、childType に埋め込まれたフィールドにアクセスするのに苦労しています。私は$form->get('childType')->get('anotherAttr')成功しなかった。私見の問題は、コレクションが単なるフィールドではなく、コレクションのどのアイテムを取得したいのかを Symfony が認識しないと、getting('anotherAttr') を実行できないという事実に起因します。とにかく、多くの検索の後、コレクションから最初のアイテムが欲しいことを彼に伝える方法が見つかりません.

コードは次のとおりです。

親クラス タイプ:

<?php

namespace my\myBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;

class ParentType extends AbstractType
{
    public function buildForm(FormBuilder $builder, array $options)
    {
        $builder->add('attribute1','text',array("label" =>     'attribute 1 :'))
                ->add('childType','collection',array('type' => new ChildType($options['attrForChild'])));
    }

    public function getDefaultOptions(array $options)
    {
        return array(
            'data_class' => 'my\myBundle\Entity\Parent',
            'attrForChild'         => null
        );
    }

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

childClassType :

 <?php

namespace my\myBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;

    class ChildType extends AbstractType
    {
        private $childAttr;

    public function __construct($childAttr=null){
        $this->childAttr=$childAttr;
    }

    public function buildForm(FormBuilder $builder, array $options)
    {
        $builder->add('childAttr','text',array("label" => 'childAttr : ','property_path' => false));
                if(isset($this->childAttr)){
                    $childAttr = $this->childAttr;
                    $builder->add('childAttrDependantEntity','entity',array("label" => 'RandomStuff : ',
                        'class' => 'mymyBundle:randomEntity',
                        'property' => 'randProperty',
                        'multiple' => false,
                        'query_builder' => function(\my\myBundle\Entity\randomEntityRepository $r) use ($childAttr) {
                            return $r->findByChildAttr($childAttr);
                        }
                    ));
                }
                $builder->add('anotherAttr','text',array("label" => 'Other attr : '))
    }

    public function getDefaultOptions(array $options)
    {
        return array(
            'data_class' => 'crri\suapsBundle\Entity\Adresse',
            'childAttr'         => null
        );
    }

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

また、使用する childAttr ソリューションは問題ありませんか? (動作していますが、ハックのように感じます。同じことを行うためのよりクリーンな方法はありますか?)。使用目的 = ユーザーがテキスト フィールドを提供し、データベースに存在するかどうかを確認し、存在する場合は、この属性に関連するフォームに entityType を追加します。目標は、ユーザーがデータベースからのすべての要素ではなく、要素の拘束リストから選択することです。

編集: コントローラーの対応するコード:

public function parentTypeAddAction(Request $request){
    $parentEntity = new ParentEntity();
    $parentEntity->addChildEntity(new ChildEntity());
    $form = $this->createForm(new ParentType,$parentEntity);
    if ($request->getMethod() == 'POST') {
        $form->bindRequest($request);
        // Testing (everything I tried)
        $test=$form->get('childType')->getAttribute('childAttr');
        /**
        $test=$form['childAttr'];
        $test=$form->get('childAttr'); **/
        return $this->container->get('templating')->renderResponse('myMyBundle:Default:test.html.twig',
                array('test' => $test));
        if($test!=null ){
                $anEntity = $em->getRepository('crrisuapsBundle:AnEntity')->find($test);
                if($anEntity==null){
                    $form->get('childType')->get('childAttr')->addError(new FormError("Invalid attribute."));
                } else {
                    $form = $this->createForm(new ParentType,$parentType,array('childAttr' => $test));
                    $individu->getAdresses()->first()->setAnEntity($anEntity);
                }
            }
        $form->bindRequest($request);
        if($request->request->get('CHILDATTRPOST')!='Search attribute'){
            if ($form->isValid()) {
                $em->persist($parentType);
                $em->persist($individu->getChildEntity()->first());
                $em->flush();
                return $this->redirect($this->generateUrl('myMyBundle_homepage'), 301);
            }
        }
    }
    return $this->container->get('templating')->renderResponse('myMyBundle:Default:parentTypeAdd.html.twig', 
            array('form' => $form->createView()));
}
4

1 に答える 1

1

チーズマックフライの提案のおかげで、私はそれを手に入れる方法を理解することができました. 解決策は次のとおりです。

//Getting the childEntities forms as an array
$childArray=$form->get('childType')->getChildren();
//Getting the childEntity form you want
$firstChild=$childArray[0];
//Getting your attribute like any form
$childAttrForm=$childArray[0]->get('childAttr');
$childAttr=$childAttrForm->getData();
于 2013-05-07T07:13:22.180 に答える