我正在用symfony5编写一个博客,我在从url获取id以显示数据库中的评论时遇到了问题。
总而言之:-我有一个视图“/fiche/{id}”wish显示特定的游戏信息。-人们可以在下面留言,留言进入数据库,外键名为“jeuïid”wish是留言发布的游戏。
我们的目标是现在显示所有的评论希望张贴在这个特定的游戏。我想在url“/fiche/{id}”中显示外键为“jeu\u 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(),
]);
}
以下是实体“评论”中的关注变量:
/**
* @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;
}
1条答案
按热度按时间lb3vh1jj1#
我认为正确的方法是这样的: