我在ZF2安装中创建了一个名为AB2CD的新模块。 IndexController的indexAction只返回一个新的ViewModel()。我得到的错误信息是:
Zend\View\Renderer\PhpRenderer::render: Unable to render template "ab2-cd/index/index"; resolver could not resolve to a file
我在module.config.php中的视图管理器是:
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
文件夹ab2-cd
会在哪里出现?我可以通过重命名文件夹来解决错误,但我希望能够理解为什么它在错误的地方开始...
答案 0 :(得分:2)
ab2-cd
是从您的模块名称AB2CD
生成的。如果您不知道自动生成的名称使用setTemplate
方法手动提供视图模型的模板名称。
如果您想继续使用自动生成的名称,您的目录结构应该是:
--module
|--AB2CD
|--view
|--ab2-cd
|--[lower-cased-controller-name]
|--[lower-cased-action-name]
答案 1 :(得分:1)
除了Exlord的答案,您不必在控制器中手动设置模板,您还可以在module.config.php中提供模板映射
'view_manager' => array(
...
'template_map' => array(
'ab2-cd/index/index' => __DIR__ . '/../view/AB2CD/index/index.phtml',
),
...
),
我也建议不要使用带有数字的模块名称。像AbToCd这样可以转换为ab-to-cd/index/index
的东西可以更好地与psr-0一起使用。