我已經看到了已經討論過的所有關於此主題的鏈接,但似乎無法爲我工作,因此我想再次打開此討論並向您顯示我的配置文件以及..無法呈現模板「錯誤」;解析器無法解析爲文件ZF2
我所有的文件夾結構首先是這樣的:
到目前爲止,我有module.config.php這樣的:
return array(
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController',
),
'view_manager' => array(
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'album/album/index' => __DIR__ . '/../view/album/album/index.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
),
'template_path_stack' => array(
'album' => __DIR__ . '/../view',
)
)
),
'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',
),
),
),
),
),
);
所以desperated的東西得到修復和其他問題就這樣留言: 找不到名稱爲「相冊」的路線 :S – Lulzim
如果解決了這個問題,請打開一個新問題並將其標記爲已解決:)其他用戶更容易找到相同類型問題的答案。 –