cakephp结构源代码视图

时间:2013-10-23 01:42:03

标签: cakephp meta

我想知道为什么:

<?php
    echo $this->Html->meta('icon');
    echo $this->Html->meta('shortcut icon');
    echo $this->Html->css(array('style', 'backtop'));
    echo $this->Html->script(array('jquery-1.7.min', 'superfish', 'jquery.responsivemenu', 'jquery.flexslider', 'jquery.easing.1.3', 'jquery.ui.totop'));
    echo $this->Html->meta('keywords', 'enter any meta keyword here');
    echo $this->Html->meta('description', 'enter any meta keyword here');
?>

结束于

<link href="/favicon.ico" type="image/x-icon" rel="icon" /><link href="/favicon.ico" type="image/x-icon" rel="shortcut icon" /><meta/>
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<link rel="stylesheet" type="text/css" href="/css/backtop.css" />

<script type="text/javascript" src="/js/jquery-1.7.min.js"></script>
<script type="text/javascript" src="/js/superfish.js"></script>
<script type="text/javascript" src="/js/jquery.responsivemenu.js"></script>
<script type="text/javascript" src="/js/jquery.flexslider.js"></script>
<script type="text/javascript" src="/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="/js/jquery.ui.totop.js"></script>

为什么有些线条恰好位于下方,而其他线条位于一条线上? 收盘来自哪里?你会在快捷方式标签后面找到它。

我检查了来自cakephp.org的其他蛋糕网站,但它们似乎与我没有相同的问题。

1 个答案:

答案 0 :(得分:1)

<?php
    echo $this->Html->meta('icon');
    //echo $this->Html->meta('shortcut icon');
    echo $this->Html->css(array('style', 'backtop'));
    echo $this->Html->script(array('jquery-1.7.min', 'superfish', 'jquery.responsivemenu', 'jquery.flexslider', 'jquery.easing.1.3', 'jquery.ui.totop'));
    echo $this->Html->meta('keywords', 'enter any meta keyword here');
    echo $this->Html->meta('description', 'enter any meta keyword here');
?>

不是你echo $this->Html->meta('shortcut icon');因为在cakephp中没有处理类型为“快捷图标”的元素。这就是为什么它只给予。

以下将为您提供两个元标记。

echo $this->Html->meta('icon');

<link href="/cake/caketest/favicon.ico" type="image/x-icon" rel="icon" /><link href="/cake/caketest/favicon.ico" type="image/x-icon" rel="shortcut icon" />