本文实例讲述了Thinkphp5.0框架视图view的模板布局用法。分享给大家供大家参考,具体如下:
本文实例讲述了Thinkphp5.0框架视图view的模板布局用法。分享给大家供大家参考,具体如下:
使用include,文件包含:
<!-- 头部 -->
<div class="header">
{include file="common/header" /}
</div>
模板继承:
common\base.html:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{block name="title"}默认标题{/block}</title>
</head>
<body>
{block name="body"}
{/block}
</body>
</html>
index.html:
{extend name="common/base" /}
{block name="title"}
index页面title
{/block}
{block name="body"}
<h1>index页面body</h1>
{/block}
如果需要在继承的模板中显示父级的内容:
父级:
{block name="footer"}
默认footer
{/block}
子级:
{block name="footer"}
{__block__}
index
{/block}
子级就会显示:
默认footer index
layout布局:
(1)开启配置文件的layout_on => true。
(2)在view目录下新建layout.html文件:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{$title}</title>
</head>
<body>
{__CONTENT__}
</body>
</html>
可以使用include,不能使用block。
(3)其他页面会自动使用这个页面,只替换{__CONTENT__}
位置的内容。