2016-01-09 207 views
0

我的配置價值的Zend 查看渲染器 PhpRenderer ::渲染:無法呈現模板

'controllers' => array(
     'invokables' => array(
      'System\Controller\Index' => 'System\Controller\IndexController', 
      'System\Controller\Config' => 'System\Controller\ConfigController' 
     ), 
    ), 
    'view_manager' => array( 
     'template_path_stack' => array(
      'system' => __DIR__ . '/../view', 
     ) 
    ), 

    'router' => array(
     'routes' => array( 
      // using the path /application/:controller/:action 
      'system' => array(
       'type' => 'segment', 
       'options' => array(
        'route' => '/system/index[/:action][/:id]', 
        'constraints' => array( 
         'action' => '[a-zA-Z][a-zA-Z0-9_-]*', 
         'id'  => '[0-9]+', 
        ), 
        'defaults' => array(
         'controller' => 'System\Controller\Index', 
         'action'  => 'index', 
        ), 
       ), 
      ), 

     ), 
    ), 

和目錄stutrue在照片。

是否還有其他東西我失蹤?因爲我在zf2應用程序中收到錯誤消息。

錯誤消息

的Zend \查看\渲染器\ PhpRenderer ::渲染:無法呈現模板 「系統/指數/指數」;解析器無法解析到一個文件

enter image description here

回答

0

試試這個:

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