Phalcon覆盖视图文件

时间:2016-01-24 19:50:25

标签: php phalcon volt

即使我的脑袋中有不同的标题,Phalcon也会用 Phalcon PHP Framework

替换它

我的伏特文件:

<head>
   <title>Search</title>
   <link rel="shortcut icon" href="https://raw.githubusercontent.com/phalcon/invo/master/public/favicon.ico" type="image/x-icon"/>
</head>

在浏览器中,这变为:

    <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title>Phalcon PHP Framework</title>
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
    </head>

这个标题和引导链接从哪里来了?以及如何删除它。

编辑: 将IndexController更改为:

<?php

class IndexController extends ControllerBase
{
    public function initialize()
    {
        $this->tag->setTitle('Welcome');
    }

    public function indexAction()
    {

    }

}

和Index.volt:

<head>
    {{ get_title() }}
    <link rel="shortcut icon" href="https://raw.githubusercontent.com/phalcon/invo/master/public/favicon.ico" type="image/x-icon"/>

仍然标题仍然相同。删除浏览器缓存以确认

感谢。

1 个答案:

答案 0 :(得分:0)

问题是view / index / index.volt自动继承了view / index.volt。我从那里删除了线条,解决了这个问题。