树枝有什么问题?

时间:2011-12-03 23:06:50

标签: symfony twig

这是我在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>

我得到了:

  

AcmeBlogBu​​ndle中不存在变量“实体”:发布:第7行的print.html.twig   500内部服务器错误 - Twig_Error_Runtime

知道可能出现什么问题吗?

1 个答案:

答案 0 :(得分:0)

我已经清除了缓存...现在一切似乎都没问题。