这是我的控制器:
public function indexAction()
{
$news = $this->getDoctrine()
->getRepository('FooNewsBundle:News')
->findAll();
if (!$news) {
throw $this->createNotFoundException('No news found');
}
$build['news'] = $news;
return $this->render('FooNewsBundle:Default:news_show_all.html.twig',$build);
}
以下是我对news_show_all.html.twig
的看法{% block body %}
<table>
{% for new in news %}
<h3>{{ new.Title }}</h3>
{% endfor %}
</table>
{% endblock %}
我得到的是一个空白页但是在查看来源时我得到了这个:
<h3></h3>
<h3></h3>
这是惊人的,因为我的表中有3个项目,它只显示2个,它们是空白的。有什么想法吗?