Twig无法识别传递给模板的变量

时间:2013-08-06 05:44:42

标签: php symfony doctrine-orm twig

我正在尝试一次在页面上呈现多个内容(最新文章,最新活动,......)。我正在使用Symfony2和Doctrine2。

这就是我的控制器代码:

  public function indexAction()
  {
    $em = $this->getDoctrine()->getManager();

    $articles = $this->getDoctrine()->getRepository('MyAppBundle:Article')->findOrderedByDate(3);
    $events = $this->getDoctrine()->getRepository('MyAppBundle:Event')->findOrderedByDate(2);


    \Doctrine\Common\Util\Debug::dump($events);

    return $this->render('MyAppBundle:Page:index.html.twig', array(
      'articles' => $articles,
      'events', $events
    ));
  }

事件的转储显示它是一个StdArray,其中包含一个项目(来自我的数据库的事件)。但是,如果我尝试访问该页面,则会收到以下Symfony2错误:

Variable "events" does not exist in MyAppBundle:Page:index.html.twig at line 47

相关的Twig模板部分如下(它与文章完全相同):

{% for event in events %}
  <h2>{{ event.name }}</h2>
  <p class="small">{{ event.eventdate|date('Y-m-d H:i:s') }}</p>
  <p>{{ event.intro }} <a href="#">Lees meer &raquo;</a></p>
  <hr class="dotted">
{% endfor %}

在我看来,变量没有正确传递到视图中,因为我甚至无法显示硬编码字符串(即'fruit','banana')。

有没有人知道为什么会这样?

1 个答案:

答案 0 :(得分:3)

'events', $events应更改为'events' => $events