尝试使用表单更新或插入Symfony2控制器

时间:2012-04-09 17:08:22

标签: forms symfony doctrine controller insert-update

我的代码有什么问题?我想根据网址更新或插入Moteur对象。
先谢谢。

/**
* @Route("/moteur/{moteurid}", name="moteur", requirements={"moteurid" = "\d+"}, defaults={"moteurid" = null})
* @Template()
*
* Cette page permet d'enregistrer de nouveaux moteurs (et de les éditer).
*/
public function moteurAction($moteurid)
{
    $args=array();
    $avertissement = null;
    if (!$this->get('security.context')->isGranted('ROLE_ADMIN'))
    {
        $avertissement = "Vous n'avez pas le droit d'accéder à cet espace.";
        return $this->redirect($this->generateUrl('index', array('avertissement' => $avertissement)));
    }

    $args['menu']['admin'] = 'selected';
    $obj = null;
    if ($moteurid == null)
    {
        $obj = new Moteur();
    }
    else
    {
        $obj = $this->getDoctrine()->getRepository('CreasixtineAFBundle:Moteur')->find($moteurid);
    }
    $form = $this->createForm(new FormMoteur(), $obj);
    $args['form'] = $form->createView();

    if ($this->getRequest()->getMethod() == 'POST')
    {
        $form->bindRequest($this->getRequest());

        if ($form->isValid())
        {
            $obj = $form->getData(); // Type Moteur()
            $pn = $obj->getPnid();

            $em = $this->getDoctrine()->getEntityManager();
            if ($moteurid == null)
            {
                $em->persist($obj);
                $avertissement = "Moteur créé !";
            }
            else 
            {
                // Rien, le moteur sera mis à jour avec flush()
                $avertissement = "Moteur mis à jour !";
            }
            foreach ($pn as $my_pn){$em->persist($my_pn);}
            $em->flush();

            return $this->redirect($this->generateUrl('admin', array('avertissement' => $avertissement)));
        }
        else
        {
            throw new Exception("Le formulaire n'est pas valide.");
        }
    }

    $contenu = $this->rendu($args, "formulaire_moteur.html.twig");
    return $contenu;
}

1 个答案:

答案 0 :(得分:1)

首先,您不需要这一行,因为PHP5本身通过引用传递对象:

$obj = $form->getData(); // Type Moteur()

然后,你在Moteur和Pn之间的关系有点令人困惑。你得到一个带有getPnid()的Pn,但你得到一个你想要坚持的对象?

无论如何,这些Pn对象应该在Moteur之前保留,所以这就是我要写的:

if ($form->isValid())
{
    $em = $this->getDoctrine()->getEntityManager();

    $pn = $obj->getPnid();

    //Persist these related objects BEFORE Moteur
    foreach ($pn as $my_pn)
    {
        $em->persist($my_pn);
    }

    if ($moteurid == null)
    {
        $em->persist($obj);
        $avertissement = "Moteur créé !";
    }
    else 
    {
        // Rien, le moteur sera mis à jour avec flush()
        $avertissement = "Moteur mis à jour !";
    }
    $em->flush();

    return $this->redirect($this->generateUrl('admin', array('avertissement' => $avertissement)));
}
else
{
    throw new Exception("Le formulaire n'est pas valide.");
}