Symfony2和Doctrine2:使用两个实体填充表单(一个复杂的场景)

时间:2012-11-13 15:34:13

标签: php symfony doctrine-orm entity symfony-forms

我有5个实体:

  • 用户,
  • 人,
  • UserAffiliation,
  • PersonAffiliation和
  • 所属

这是架构:

enter image description here

一些细节:

  • WebUser是在网站上注册的人。对于每个Webuser,都有一个人员ID。

  • 一个人可以是网络用户,作者等。

  • 每个Web用户都有0个或更多个从属关系。这些隶属关系是由这个WebUser创建的,并在能干的UserAffiliations中链接。

  • WebUser还可以将他创建的从属关系链接到一个人(如果该人是作者),并且将填充实体PersonAffiliation。

我现在正试图让webuser为作者(人)分配一个联盟。为此,我有:

  • 在实体人

    @ORM\OneToMany(targetEntity="PersonAffiliation", mappedBy="person", cascade={"persist", "remove"})
    
    protected $affiliations;
    
  • 在PersonAffiliation

    @ORM\ManyToOne(targetEntity="Person", inversedBy="affiliations")
    @ORM\JoinColumn(name="person_id", referencedColumnName="id")
    
    protected $person;
    
    @ORM\ManyToOne(targetEntity="Affiliation", inversedBy="person_affiliations")
    @ORM\JoinColumn(name="affiliation_id", referencedColumnName="id")
    
    protected $affiliation;
    
  • 在实体用户中:

    @ORM\OneToMany(targetEntity="UserAffiliation", mappedBy="user")
    
    protected $affiliations;
    
    
    @ORM\ManyToOne(targetEntity="Person")
    @ORM\JoinColumn(name="person_id", referencedColumnName="id")
    
    protected $person;
    
  • 在Entity UserAffiliation

    @ORM\ManyToOne(targetEntity="User", inversedBy="affiliations")
    @ORM\JoinColumn(name="user_id", referencedColumnName="id")
    
    protected $user;
    
    
    @ORM\ManyToOne(targetEntity="Affiliation", inversedBy="user_affiliations")
    @ORM\JoinColumn(name="affiliation_id", referencedColumnName="id")
    
     protected $affiliation;
    

在表格中,我正在做下一个:

$builder->add('affiliations', 'entity', array(
            'class' => 'SciForumVersion2Bundle:PersonAffiliation',
            'query_builder' => function($em) use ($person){
            return $em->createQueryBuilder('pa')->where('pa.person_id = :id')->setParameter('id', $person->getId());
        },
            'property'    => 'affiliation',
            'multiple' => true,
            'expanded' => true,
        ));

但是这一切都没有按照我的意愿运作。

解释:当我尝试添加新的联盟时,它仅为WebUser添加,我无法通过表单将其链接到作者(人)。

你对如何解决这个问题有所了解,或者是一个很好的教程吗?

2 个答案:

答案 0 :(得分:2)

这应该在Entity1Controller.php中处理:

public function createAction(Request $request)
{
  $securityContext = $this->get('security.context');
  $em = $this->getDoctrine()->getManager();
  $form = $this->createForm(new Entity1Type()
     ,null,array('attr' => array('securitycontext' => $securityContext)));
  $form->bind($request);

  if ($form->isValid()){
    $data = $form->getData();
    $entity1id = $data->getId();
    $entity2id = $data->getEntity2Id();
    $entity1medicaid=$data->getMedicaidID();
    $entity1=$em->getRepostiory('projectBundle:Entity1')->findOneById($entity1id);
    $entity2=$em->getRepository('projectprojectBundle:Entity2')->findOneById($entity2id);
    if (null === $entity1){
      $entity1=new entity1();
      $entity1->setEntity2id($entity2id);
      $entity1->setID($entity1id);
    }
    if (null === $entity2){
      $entity2=new entity2();
      $entity2->setID($entity2id);
    }
    $em->persist($entity1);
    $em->persist($entity2);
    $em->flush();
    return $this->redirect($this->generateUrl('entity1', array()));
  }

  return $this->render('Bundle:entity1:new.html.twig', array(
      'form'   => $form->createView()
     ,'attr' => array('securitycontext' => $securityContext
     )
  )
  );
}

您可能还需要在关联映射中设置级联持久性。 Entity1.yml:

project\projectBundle\Entity\Entity1:
    type: entity
    table: entity1
    repositoryClass: project\projectBundle\Entity\Entity1Repository
    fields:
        id:
            type: bigint
            id: true
            generator:
                strategy: AUTO
        property:
            type: string
            length: 255
            unique: true
    manyToMany:
        entity2:
            targetEntity: entity2
            mappedBy: entity1
            cascade: ["persist"]

理论上,symfony会将entity2置于引擎之下,使第二个if null子句变得不必要,但这总是困扰我,所以我更愿意明确地做。

答案 1 :(得分:2)

好吧,如果这个表单绑定到WebUser实体的集合是因为​​你传入Controller中的表单创建这样的类的对象,这意味着:

$webUser = new WebUser();

$this->createForm(new SubmissionAffiliationFormType(), $webUser);

或者您通过不设置DefaultOptions并明确告知必须绑定到的data_class来委托决定使用哪个类到Symfony Forms:

class SubmissionAffiliationFormType extends AbstractType
{

    //...

    public function getDefaultOptions(array $options)
    {
        return array(
            'data_class' => 'Acme\DemoBundle\Entity\Person',
        );
    }
}