'Zend \ View \ Renderer \ PhpRenderer :: render:无法渲染模板“错误”;

时间:2015-03-17 10:15:05

标签: zend-framework2

我正在尝试实施Zf2Tutotrial中给出的教程。但我得到无法呈现模板“错误”下面提到的错误。

这是我的代码。

<?php

return array(
 'controllers' => array(
     'invokables' => array(
         'Album\Controller\Album' => 'Album\Controller\AlbumController',
     ),
 ),

     // The following section is new and should be added to your file
 'router' => array(
     'routes' => array(
         'album' => array(
             'type'    => 'segment',
             'options' => array(
                 'route'    => '/album[/:action][/:id]',
                 'constraints' => array(
                     'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                     'id'     => '[0-9]+',
                 ),
                 'defaults' => array(
                     'controller' => 'Album\Controller\Album',
                     'action'     => 'index',
                 ),
             ),
         ),
     ),
 ),

'view_manager' => array(
     'template_path_stack' => array(
         'album' => __DIR__ . '/../view',
     ),
 ),

1 个答案:

答案 0 :(得分:0)

这可能是由于您的应用程序遇到某种类型的ExceptionError但无法呈现错误,因为无法找到这些错误的模板。

要解决此问题,请尝试将此类错误的模板配置行添加到view_manager数组:

'view_manager' => array(
    'not_found_template' => 'error/404',
    'exception_template' => 'error/index',
    ...,
    'template_map' => array(
        'error/404' => __DIR__ . '/../view/album/error/404.phtml',
        'error/index' => __DIR__ . '/../view/album/error/index.phtml',
    ),
),

当然,请确保这些模板使用template_map实际映射到现有模板。