1

私はsymfony2.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
    ));
}

ご覧のとおり、$ parentが入力されているかどうかを確認するためにifステートメントを入力し、var_dumpを再確認してみたところ、オブジェクトでいっぱいになっています。しかし、何らかの理由で、エンティティオブジェクトのsetParent()関数を呼び出すと、nullで埋められます。

4

2 に答える 2

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 に答える
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 に答える