1

我在 symfony 2.0 中构建这个表单,由于某种原因,当我从数据库中检索一个对象并将它放入一个对象时,当我想保存它时它就消失了,所以我收到以下错误:

Catchable Fatal Error: Argument 1 passed to MelvinLoos\CMS\CoreBundle\Entity\Page::setParent()
must be an instance of MelvinLoos\CMS\CoreBundle\Entity\Page, null given, 
called in vendor\symfony\src\Symfony\Component\Form\Util\PropertyPath.php on line 347
and defined in src\MelvinLoos\CMS\CoreBundle\Entity\Page.php line 233

我的代码:

public function popupChildAction($parentid)
{
    $entity  = new Page();
    $entity->setWebsite($this->getWebsite());

    $parent = $this->getDoctrine()
    ->getRepository('MelvinLoosCMSCoreBundle:Page')
    ->findOneById($parentid);

    if (!$parent)
    {
        throw $this->createNotFoundException('No parent found with given id: "' . $parentid . '"');
    }
    $entity->setParent($parent);

    $entity->setCreatedBy($this->getUser());
    //$entity->setPageType();
    $form   = $this->createForm(new PageChildType(), $entity);
    $request = $this->getRequest();
    $form->bindRequest($request);

    if ($form->isValid()) {

        $em = $this->getDoctrine()->getEntityManager();
        $em->persist($entity);
        $em->flush();

        return $this->redirect($this->generateUrl('page_show', array('id' => $entity->getId())));

    }

    return $this->render('MelvinLoosCMSCoreBundle:Page:new_popup.html.twig', array(
            'entity' => $entity,
            'form'   => $form->createView(),
            'parent' => $parent
    ));
}

正如你所看到的,我输入了一个 if 语句来检查 $parent 是否已填充,并且我还尝试了一个 var_dump 来仔细检查,它显然是用一个对象填充的。但是由于某种原因,当我调用实体对象的 setParent() 函数时,它会用 null 填充它。

4

2 回答 2

0

完全忘记了我仍然有这个问题......无论如何我解决了我的问题,仍然不知道为什么我得到了这个错误,但我用一个非常简单的解决方案解决了它。

我没有为孩子设置父母,而是相反,为父母设置了孩子。我的代码如下(其中还有一些无关紧要的新代码,因为我前段时间修复了它)。

public function popupChildAction($parentid)
{
    $parent = $this->getDoctrine()
    ->getRepository('MelvinLoosCMSCoreBundle:Page')
    ->findOneById($parentid);

    if (!$parent)
    {
        throw $this->createNotFoundException('No parent found with given id: "' . $parentid . '"');
    }
    $entity  = new Page();
    $entity->setWebsite($this->getWebsite());
    $entity->setCreatedBy($this->getUser());
    $form   = $this->createForm(new PageChildType(), $entity);
    $request = $this->getRequest();
    $form->bindRequest($request);

    if ($form->isValid()) {
        $em = $this->getDoctrine()->getEntityManager();
        $parent->setChildren($entity);
        $em->persist($entity);
        $em->flush();

        return $this->redirect($this->generateUrl('page_show', array('id' => $entity->getId())));

    }

    return $this->render('MelvinLoosCMSCoreBundle:Page:new_popup.html.twig', array(
            'entity' => $entity,
            'form'   => $form->createView(),
            'parent' => $parent
    ));
}

就像我说的那样,有更新的代码是无关紧要的,但它的全部内容是它的一部分, $parent->setChildren($entity);现在它可以工作了......希望这对某人有所帮助!感谢所有提供意见的人!

于 2012-09-30T20:47:36.813 回答
0

Melvin,您可以检查表单是否已提交并从表单中获取您的实体。
你可以这样试试吗?

    $form   = $this->createForm(new PageChildType(), $entity);
    $request = $this->getRequest();

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

        if ($form->isValid()) {
            $entity = $form->getData();
            $em = $this->getDoctrine()->getEntityManager();
            $em->persist($entity);
            $em->flush();

            return $this->redirect($this->generateUrl('page_show', array('id' => $entity->getId())));
        }
    }
于 2012-09-09T13:03:38.043 回答