为什么我不能在Symfony2中正确传递此对象?

时间:2015-06-26 16:02:15

标签: php symfony

我从这里开始遵循教程:https://www.digitalocean.com/community/tutorials/how-to-use-symfony2-to-perform-crud-operations-on-a-vps-part-1

这是我的控制器:

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个,它们是空白的。有什么想法吗?

0 个答案:

没有答案