我创建了一个名为' currency'和配置的路由在module.config中。它工作正常。 之后我添加了一个名为CrateController的新控制器,用于货币汇率。还创建了表单,模型和视图文件。 但它没有正确路由。
错误:
致命错误:未捕获的异常' Zend \ View \ Exception \ RuntimeException' with message' Zend \ View \ Renderer \ PhpRenderer :: render:无法渲染模板" currency / crate / index&#34 ;;解析器无法解析为文件....
任何检查这一点的线索都会有所帮助。
我的module.config文件如下。
return array(
'controllers' => array(
'invokables' => array(
'Currency\Controller\Currency' => 'Currency\Controller\CurrencyController',
'Currency\Controller\Crate' => 'Currency\Controller\CrateController',
),
),
// The following section is new and should be added to your file
'router' => array(
'routes' => array(
'currency' => array(
'type' => 'segment',
'options' => array(
'route' => '/currency[/:action][/:currency_id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'currency_id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Currency\Controller\Currency',
'action' => 'index',
),
),
),
'crate' => array(
'type' => 'segment',
'options' => array(
'route' => '/crate[/:action][/:c_rate_id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'c_rate_id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Currency\Controller\Crate',
'action' => 'index',
),
),
),
),
),
答案 0 :(得分:11)
检查两件事:
首先:模板文件是否存在? ./module/Currency/view/currency/crate/index.phtml
第二次:检查./Currency/config/module.config.php
'view_manager' => array(
'template_path_stack' => array(
'currency' => __DIR__ . '/../view',
)
),