Doctrine entity manager causing page to break(教义实体管理器导致页面中断)
问题描述
我是 Symfony2 的新手,并试图显示一个页面列出实体的项目.但是,一旦我使用下面的代码,分页符会出现未收到数据错误"或ERR_EMPTY_RESPONSE"导致我认为我的路线不起作用并引发问题 这里 但问题与 Doctrine 有关:
I'm new to Symfony2 and trying to display a page listing items of an entity. However, once i use the code below the page breaks with a "No data received error" or "ERR_EMPTY_RESPONSE" leading me to think that my routes were not working and raising the issue here but the issue was related to 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,
));
但是,这个简单的函数显示页面:
However, this simple function displays the page :
public function indexAction() {
return $this->render('ApsaBundle:Apsa:index.html.twig');
}
我很高兴知道如何调试这个教义问题.在树枝下面用来显示页面
i'll be glad to know how to go about debugging this doctrine issue.Below the twig use to display the page
{% 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 %}
您能否在此处
推荐答案
可能是由于 WAMP 配置错误.
Probably due to a bad WAMP configuration.
我邀请您尝试使用此命令行可用的内置 symfony 服务器:
I invite you to try with the build-in symfony server available by this command line:
php 应用程序/控制台服务器:运行
这篇关于教义实体管理器导致页面中断的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:教义实体管理器导致页面中断
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01