ZF2 phprenderer 和路由
ZF2 phprenderer & routing
我收到了
Zend\View\Renderer\PhpRenderer::render: Unable to render template "link-
account-manager/add-accounts/index"; resolver could not resolve to a file
我不确定为什么 phprender 在 link-account-manager 中查找,而我希望它在 linkaccount-manager 中查找。这是默认行为吗?我尝试递归搜索 "link-account-manager",但没有找到匹配项。
这确实是 ZF2 的默认行为。你可以看看 \Zend\View\Renderer\PhpRenderer
和 \Zend\View\Resolver\*
。
模板解析器将驼峰式 Module
或 Controller
(LinkAccountManager、AddAccountsController)名称转换为模板路径,例如 link-account-manager\add-accounts\index.phtml
。
可以在 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(
'your-custom-template' => __DIR__ . '/../view/your-custom-template.phtml' // e.g. !!
),
'template_path_stack' => array(
__DIR__ . '/../view',
// add custom paths here
),
...
),
此外,您还可以通过视图模型更改模板。假设您的文件夹结构类似于 'linkaccount-manager\view\linkaccountmanager\'(在默认模块的视图文件夹中!),例如:
namespace LinkAccountManager;
public class AddAccountsController extends AbstractActionController
{
public function indexAction()
{
$viewModel = new ViewModel();
...
$viewModel->setTemplate('linkaccount-manager\add-accounts\index');
return $viewModel;
}
}
我收到了
Zend\View\Renderer\PhpRenderer::render: Unable to render template "link-
account-manager/add-accounts/index"; resolver could not resolve to a file
我不确定为什么 phprender 在 link-account-manager 中查找,而我希望它在 linkaccount-manager 中查找。这是默认行为吗?我尝试递归搜索 "link-account-manager",但没有找到匹配项。
这确实是 ZF2 的默认行为。你可以看看 \Zend\View\Renderer\PhpRenderer
和 \Zend\View\Resolver\*
。
模板解析器将驼峰式 Module
或 Controller
(LinkAccountManager、AddAccountsController)名称转换为模板路径,例如 link-account-manager\add-accounts\index.phtml
。
可以在 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(
'your-custom-template' => __DIR__ . '/../view/your-custom-template.phtml' // e.g. !!
),
'template_path_stack' => array(
__DIR__ . '/../view',
// add custom paths here
),
...
),
此外,您还可以通过视图模型更改模板。假设您的文件夹结构类似于 'linkaccount-manager\view\linkaccountmanager\'(在默认模块的视图文件夹中!),例如:
namespace LinkAccountManager;
public class AddAccountsController extends AbstractActionController
{
public function indexAction()
{
$viewModel = new ViewModel();
...
$viewModel->setTemplate('linkaccount-manager\add-accounts\index');
return $viewModel;
}
}