我只想渲染一个从实体收到的简单文本区域
<h1>Consejo para el hijo {{ hijo.nombre }}</h1>
{{com.recom}}
它返回给我这个错误信息
第 3 行的 PreeditBundle:Consejo:verconsejo.html.twig 中不存在键为“0”的数组的键“recom”
这真的没有意义,因为在其他树枝上我可以写这样的东西。
我还添加了我的控制器动作
public function verconsejoAction($id)
{
$em = $this->get('doctrine')->getEntityManager();
$consejo = $em->getRepository('PreditBundle:Consejo')->findByHijo($id);
$hijo = $em->getRepository('PreditBundle:Hijo')->find($id);
return $this-> render('PreditBundle:Consejo:verconsejo.html.twig', array('con'=>$consejo , 'hijo'=>$hijo));
}
感谢您的回答