我从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
));
答案 0 :(得分:1)
只需访问您的财产。使用var_dumpt,print_r或托管实体中的任何转储功能可能会崩溃或破坏你的PHP服务器,因为它会尝试转储你的实体主义,他的所有依赖可能是容器...
{{ yorumlar.yourPorpertie }}