如何用Symfony 5在URL中获取Id来显示评论?

问题描述 投票:0回答:1

我正在用Symfony 5编写一个博客,我遇到了从URL中获取Id来显示数据库中的评论的问题。

总结一下: - 我有一个 "fiche{id}"视图,希望显示特定的游戏信息。 - 人们可以在下面留下评论,评论会以一个名为 "jeu_id "的外键进入数据库,希望是评论发布的游戏。

  • 我们的目标是显示所有在这个特定游戏上发布的评论,我想显示所有带有 "jeu_id "的评论。我想显示所有带有外键 "jeu_id "的评论,wish是在 "fiche{id}"这个网址中。

下面是我的控制器中的方法。

     /**
     * @Route("/fiche/{id}", name="fiche", methods={"POST", "GET"})
     */
    public function fiche($id, Jeux $jeux, Request $request): Response
    {
        $id = (int)$request->get('id');
        $commentaires = $this->getDoctrine()->getRepository(Jeux::class)->find($id);

        $commentaire = new Commentaires();
        $commentaire->setCreatedAt(new \DateTime("NOW"));
        $request = Request::createFromGlobals();
        $commentaire->setJeu($jeux);
        $form = $this->createForm(CommentairesType::class, $commentaire);
        $form->handleRequest($request);

        //test variable
        //dd($id);
        dd($commentaire->getJeu($id));

        if ($form->isSubmitted() && $form->isValid()) {
            $entityManager = $this->getDoctrine()->getManager();
            $entityManager->persist($commentaire);
            $entityManager->flush();

            return $this->redirectToRoute('liste');
        }
        return $this->render('main/fiche.html.twig', [
            'commentaires' => $commentaires,
            'jeux' => $jeux,
            'form' => $form->createView(),
        ]);
    }

下面是实体 "Commentaires "中的关注变量。

    /**
     * @ORM\ManyToOne(targetEntity=Jeux::class, inversedBy="commentaires")
     * @JoinColumn(name="jeu_id", referencedColumnName="id")
     * @ORM\JoinColumn(nullable=true)
     */
    private $jeu;

    public function getJeu(): ?Jeux
    {
        return $this->jeu;
    }

    public function setJeu($jeu): self
    {
        $this->jeu = $jeu;

        return $this;
    }

这里是实体 "Jeux "中的关注变量。

    /**
     * @ORM\OneToMany(targetEntity=Commentaires::class, mappedBy="jeu", orphanRemoval=true)
     */
    private $commentaires;

    /**
     * @return Collection|Commentaires[]
     */
    public function getCommentaires(): Collection
    {
        return $this->commentaires;
    }
php sql symfony controller doctrine
1个回答
1
投票

我想正确的方法应该是这样的。

/**
 * @Route("/fiche/{jeux}", 
 * name="fiche"
 */
public function fiche(Request $request, Jeux $jeux, EntityManagerInterface $em): Response
{
    $form = $this->createForm(CommentaireType::class);
    $form->handleRequest($request);

    if ($form->isSubmitted() && $form->isValid()) {
        $commentaire = $form->getData();
        $commentaire->setCreatedAt(new \DateTime("NOW"));
        $jeux->addCommentaire($commentaire);

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

        return $this->redirectToRoute('liste');
    }

    return $this->render('main/fiche.html.twig', [
        'commentaires' => $jeux->getCommentaires(),
        'jeux' => $jeux,
        'form' => $form->createView(),
    ]);
}
© www.soinside.com 2019 - 2024. All rights reserved.