根据我的理解,Phalcon使用index.phtml
中的index.volt
或app/views
作为未指定模板的任何网页的基本模板。
如何更改此设置以使用app/views/layouts/common.volt
?
答案 0 :(得分:3)
如果最新执行的操作是'index'(控制器中的indexAction),它使用index.volt或index.html。
您可以通过设置'模板之前'或'模板之后'来使用通用布局:
https://github.com/phalcon/invo/blob/master/app/controllers/ContactController.php#L7
2016年8月更新:由于上述信息在给定链接中不再可用,请在此处添加:
public function initialize()
{
$this->view->setTemplateBefore('your-template-name');
$this->view->setTemplateAfter('your-template-name');
}
此处有更多信息:https://docs.phalconphp.com/en/latest/reference/views.html#using-templates
答案 1 :(得分:1)
在设置视图组件时,我们需要声明$ view对象,如下所示:
$di->set('view', function () use ($config) {
$view = new View();
$view->setViewsDir($config->application->viewsDir);
$view->setLayout('common');
......
使用setLayout(String name)方法设置app的默认布局