我是Symfony2的新手,并尝试显示列出实体项目的页面。但是,一旦我使用下面的代码,“没有数据收到错误”或“ERR_EMPTY_RESPONSE”导致我认为我的路线不起作用并提出问题here但问题与Doctrine有关:
public function indexAction() {
$em = $this->getDoctrine()->getManager();
$entities = $em->getRepository('ApsaBundle:Apsa')->findAll();
return $this->render('ApsaBundle:Apsa:index.html.twig', array(
'entities' => $entities,
));
但是,这个简单的功能显示页面:
public function indexAction() {
return $this->render('ApsaBundle:Apsa:index.html.twig');
}
我很高兴知道如何调试这个学说问题。使用树枝来显示页面
{% extends ::base.html.twig %}
{% block body -%}
Apsa list
<table class="records_list">
<thead>
<tr>
<th>Id</th>
<th>Titre</th>
<th>Description</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for entity in entities %}
<tr>
<td><a href="#">{{ entity.id }}</a></td>
<td>{{ entity.titre }}</td>
<td>{{ entity.description }}</td>
<td>
<ul>
<li>
<a href="#">show</a>
</li>
<li>
<a href="#">edit</a>
</li>
</ul>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<ul>
<li>
<a href="#">
Create a new entry
</a>
</li>
</ul>
{% endblock %}
您是否可以找到压缩项目here
的链接