模板继承与包含文件混用,得不到预期的结果

浏览:584 发布日期:2016/10/31 分类:ThinkPHP5专区 关键字: 模板继承 包含文件
模板继承与包含文件混用,得不到预期的结果。

有下面4个文件:
public/master.hrml代码<!DOCTYPE html>
<html lang="zh-CN">
<head>
    {{include file="public/head"}}
</head>
<body>
{{block name="master-body"}}{{/block}}
{{include file="public/script"}}
</body>
</html>
public/head.html代码:    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>Title</title>

    <meta name="description" content="Dashboard" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="/assets/css/bootstrap.min.css" rel="stylesheet" />
    {{block name="styles"}}{{/block}}
public/script.html代码:    <script src="/assets/js/jquery.min.js"></script>
    <script src="/assets/js/bootstrap.min.js"></script>
    {{block name="scripts"}}{{/block}}
index/index.html代码:{{extend name="public/master"}}

{{block name="styles"}}
<div style="padding: 24px 48px;">
    <h1>:)</h1>
    <p>
        ThinkPHP V5<br/>
        <span style="font-size:30px">十年磨一剑 - 为API开发设计的高性能框架</span>
    </p>
    <span style="font-size:22px;">[ V5.0 版本由 <a href="http://www.qiniu.com" target="qiniu">七牛云</a> 独家赞助发布 ]</span>
</div>
{{/block}}

{{block name="master-body"}}
    <style type="text/css">
        *{ padding: 0; margin: 0; }
        .think_default_text{ padding: 4px 48px;}
        a{color:#2E5CD5;cursor: pointer;text-decoration: none}
        a:hover{text-decoration:underline; }
        body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px}
        h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; }
        p{ line-height: 1.6em; font-size: 42px }
    </style>
{{/block}}

{{block name="scripts"}}
    <script type="text/javascript" src="http://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script>
    <script type="text/javascript" src="http://ad.topthink.com/Public/static/client.js"></script>
    <thinkad id="ad_bd568ce7058a1091"></thinkad>
{{/block}}
得到的结果却是:<!DOCTYPE html>
<html lang="zh-CN">
<head>
        <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>title</title>

    <meta name="description" content="Dashboard" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="shortcut icon" href="/assets/img/favicon.png" type="image/x-icon">


    <!--Basic styles-->
    <link href="/assets/css/bootstrap.min.css" rel="stylesheet" />
    {{block name="styles"}}{{/block}}
</head>
<body>

    <style type="text/css">
        *{ padding: 0; margin: 0; }
        .think_default_text{ padding: 4px 48px;}
        a{color:#2E5CD5;cursor: pointer;text-decoration: none}
        a:hover{text-decoration:underline; }
        body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px}
        h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; }
        p{ line-height: 1.6em; font-size: 42px }
    </style>

    <!--Basic scripts-->
    <script src="/assets/js/jquery.min.js"></script>
    <script src="/assets/js/bootstrap.min.js"></script>
    {{block name="scripts"}}{{/block}}
</body>
</html>
最佳答案
评论( 相关
后面还有条评论,点击查看>>