这是我在symfony 2.0中的第一步,所以请为一个基本问题道歉。我尝试扩展自动生成的crud代码。对于postcontroller,我添加了:
/**
* Prints a Post entity.
*
* @Route("/print", name="post_print")
* @Template()
*/
public function printAction()
{
$em = $this->getDoctrine()->getEntityManager();
$entities = $em->getRepository('AcmeBlogBundle:Post')->findAll();
echo "<pre>";
print_r($entities);
echo "</pre>";
return array('entities' => $entities);
}
创建了print.html.twig:
<h1>Post list</h1>
<table class="records_list">
<thead>
<tr>
<th>Id</th>
<th>Polish</th>
<th>English</th>
<th>Date</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for entity in entities %}
<tr>
<td><a href="{{ path('post_show', { 'id': entity.id }) }}">{{ entity.id }}</a></td>
<td>{{ entity.polish }}</td>
<td>{{ entity.english }}</td>
<td>{% if entity.date %}{{ entity.date|date('Y-m-d H:i:s') }}{% endif%}</td>
<td>
<ul>
<li>
<a href="{{ path('post_show', { 'id': entity.id }) }}">show</a>
</li>
<li>
<a href="{{ path('post_edit', { 'id': entity.id }) }}">edit</a>
</li>
</ul>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<ul>
<li>
<a href="{{ path('post_new') }}">
Create a new entry
</a>
</li>
<li>
<a href="{{ path('post_print') }}">
Drukuj
</a>
</li>
</ul>
我得到了:
AcmeBlogBundle中不存在变量“实体”:发布:第7行的print.html.twig 500内部服务器错误 - Twig_Error_Runtime
知道可能出现什么问题吗?
答案 0 :(得分:0)
我已经清除了缓存...现在一切似乎都没问题。