我正在尝试使用数组索引从数据库获取数据但是我不想迭代。
内容表:
|id| content |active
|1|this is first content |yes
|2| This is secound Content| yes
Controller.php这样:
$em = $this->getDoctrine()->getManager();
$entities= $em->getRepository('TestCMSBundle:Content\Content')->GetContents();
return $this->render('TestCMSBundle:Default:index.html.twig', array('entities' => $entities));
mytwig:
{{ entities.content[0] }}
其他一些内容......等等等等
{{ entities.content[1]}}
但我似乎得到了内容。
错误: TestCMSBundle中不存在键为“0,1”的数组的键“内容”:第80行的index.html.twig
请我不要像以下那样迭代循环:
{% for entity in entities %}
{{ entity.content}}
{%endfor%}
答案 0 :(得分:4)
您应该使用点而不是括号:
entities.0.content