我正在从 MySQL 数据库中获取数据,但未显示在渲染的 TWIG 文件中。在 TWIG 文件中,我执行 Twig 的 dump() 函数它可以工作,显示所有数据但 TWIG 为空。
$em = $this->getDoctrine()->getEntityManager();
$yorumlar = $em->getRepository('SiteSiteBundle:Yorum')->find($id);
if (!$yorumlar) {
throw $this->createNotFoundException($id . ' nolu Yorum bulunamadı!');
}
return $this->render('SiteSiteBundle:Default:liste.html.twig', array(
'yorumlar' => $yorumlar
));