对于模块内的目录结构,我有类似的东西:
Api
├── Module.php
├── config
│ └── module.config.php
├── src
│ └── ( ..etc ..)
└── view
├── api
│ └── api
│ └── index.phtml
└── partial
└── test.phtml
然后,我这样做:
<?= $this->partial('partial/test.pthml', array()); ?>
但是,我得到:
2012 年 6 月 5 日 14:56:58] PHP 致命错误:未捕获的异常 'Zend\View\Exception\RuntimeException' 带有消息 'Zend\View\Renderer\PhpRenderer::render: Unable to render template "partial/test.pthml "; 解析器无法解析到 /Users/jeff/web/n/vendor/zendframework/zendframework/library/Zend/View/Renderer/PhpRenderer.php:463 中的文件
我的部分应该去哪里?