1

我正在从 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
    ));
4

1 回答 1

1

只需访问您的财产。在托管实体中使用 var_dumpt、print_r 或任何转储函数可能会使您的 php 服务器崩溃或使您的 php 服务器变慢,因为它会尝试转储您的实体原则和他的所有依赖项,可能是容器......

{{ yorumlar.yourPorpertie }}
于 2013-07-25T14:11:06.630 回答