2

我在 CakePhp 2.0 上有一个奇怪的错误,其中 head 标签呈现为空,并且属于 head 的所有标签在任何内容之前呈现到正文中。

这是布局 default.ctp 的样子:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <?php echo $this->Html->charset(); ?>
    <title>
        <?php echo $title_for_layout; ?>
    </title>
    <?php
        echo $this->Html->meta('icon');
        echo $this->Html->script(array('librerias/jquery.tools.min'));
        echo $this->Html->css('cake.generic');
        echo $this->Html->css('webfront');
        echo $scripts_for_layout;
    ?>
</head>
<body>
    <div id="container">
        <div id="header">
        </div>
(the rest of the html render)
</body>
</html>

正如萤火虫所说,这就是它的渲染方式:

<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
&#65279;&#65279;
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
    <title> Usuarios </title> **(IE moves the title tag on the head manually, it seems)**
    **(IE displays the DOCTYPE on its debugging console here)**
    <link rel="icon" type="image/x-icon" href="/web/favicon.ico">
    <link rel="shortcut icon" type="image/x-icon" href="/web/favicon.ico">
    <script src="/web/js/librerias/jquery.tools.min.js" type="text/javascript">
    <link href="/web/css/cake.generic.css" type="text/css" rel="stylesheet">
    <link href="/web/css/webfront.css" type="text/css" rel="stylesheet">
    <div id="container">
        <div id="header"> </div>
        (the rest of the html render)
</body>
</html>

这已经够糟糕了,因为它会扭曲 DOCTYPE 标记并使 IE 呈现页面非常错误。

另外,我有另一个测试站点,它不会发生此错误。事实上,我切换了布局,错误是一样的。

有人知道为什么会这样吗?我在网上找不到类似的东西,我对此一无所知。任何帮助将不胜感激。

提前致谢

4

3 回答 3

3

终于我们得到了这个问题的答案。出现在 utf-8 编码中的是 Cake 的 php 和臭名昭著的字符 。通过更改在最终布局之前传递的 php 文件的每个编码,我们解决了这个问题。

谢谢你的帮助 :)

于 2012-05-29T17:10:38.947 回答
1

你有 BOM char 的文件。使用 BOM Detector 程序

java : http://www.javapractices.com/topic/TopicAction.do?Id=257 [推荐][查找并删除]

1- 检查 URL 是否存在 BOM
2- 从文件
php 中删除 BOM:http: //www.dotvoid.com/2010/04/detecting-utf-bom-byte-order-mark/

于 2014-03-13T08:09:35.030 回答
0

您在布局文件中缺少一个结束标记。

    <body>
        <div id="container">
            <div id="header">
            </div>
    (the rest of the html render)
    </body>
    </html>

应作如下修正

    <body>
        <div id="container">
            <div id="header">
            </div>
    (the rest of the html render)
        </div>
    </body>
    </html>
于 2012-05-05T05:45:59.207 回答