Symfony3 - 如何使用其集合持久化对象?

时间:2018-01-03 22:45:27

标签: symfony collections persist

我有一个带有多个集合的对象“人”(“文档”,“联系人”,“等”)。 我想保存“人物”并自动收藏。 这是我的控制者:

    $em = $this->getDoctrine()->getManager();
    $persona = new Persona();
    $formulario = $this->createForm(
        PersonaType::class, 
       $persona,
        array('action' => $this->generateUrl('persona_create'),
              'method' => 'POST')
    );

    $formulario->handleRequest($request);

    $em->persist($persona);
    $em->flush();

当我转储“$ persona”时,我收集了所有需要保存的信息,但是当我坚持下去时,除了“persona”atributtes之外,我丢失了所有收集的信息。

这是实体“persona”的一个集合

/**
 * @ORM\OneToMany(targetEntity="PersonaContacto", mappedBy="idPersona",cascade={"persist"},orphanRemoval=true)
 */
private $contactos;

 public function getContactos() {
return $this->contactos;

}

public function addContacto(PersonaContacto $persona_contacto) {
    $this->contactos->add($persona_contacto);
}

public function removeContacto(PersonaContacto $persona_contacto) {
    $this->contactos->removeElement($persona_contacto);
}

最后,当我使用集合

时,这是表单的一部分
->add('contactos', CollectionType::class, array(
                // each entry in the array will be "document" field
                'entry_type' => PersonaContactoType::class,
                'prototype' => true,
                'allow_add' => true,
                'allow_delete' => true,
                'by_reference' => false,
                // these options are passed to each "idioma" type
                'entry_options' => array('label' => false, 'attr' => array('class' => 'contacto-box')
                ),
            ))

这是添加和删除元素的.js。正如我所说,这个.js被几个集合以相同的形式使用。

jQuery(document).ready(function () {

    //var collectionCount = 0;

    jQuery('.add-another-collection').click(function (e) {
        e.preventDefault();

        var collectionList = $(this).parent().parent().parent().parent();

        // grab the prototype template
        var newWidget = collectionList.attr('data-prototype');

        // replace the "__name__" used in the id and name of the prototype
        // with a number that's unique to your emails
        // end name attribute looks like name="contact[emails][2]"
        //newWidget = newWidget.replace(/__name__/g, collectionCount);
        //collectionCount++;

        // create a new list element and add it to the list
        var newTr = jQuery('<tr></tr>').html(newWidget);
        newTr.appendTo(collectionList);

    });

    // handle the removal, just for this example
    $(document).on('click', '.remove-collection', function (e) {
        e.preventDefault();

        $(this).parent().parent().remove();

        return false;
    });
})

我不明白为什么级联持续不起作用。

2 个答案:

答案 0 :(得分:0)

在拥有方

中使用 mappedBy
/**
 * @ORM\OneToMany(targetEntity="PersonaContacto", mappedBy="xxx", cascade={"persist"},orphanRemoval=true)
 */

在反面使用 inversedBy

inversedBy="xxx"

更多详情Bidirectional Associations

答案 1 :(得分:0)

按照教条文档,在Persona OneToMany注释中添加mappedBy道具,并在PersonaContacto中添加ManyToOne(http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/association-mapping.html#one-to-many-bidirectional

然后在Persona(可能没用,试试):

public function addContacto(PersonaContacto $persona_contacto) {
    $this->contactos->add($persona_contacto);
    $persona_contacto->setPersona($this);
}