一些指令:</p>
#extends, #block, #override, #super
例如,我有一个布局模板文件,
基础.ftl
<html>
<head>
<#block name="head">base_head_content</#block>
</head>
<body>
<#block name="body">base_body_content</#block>
</body>
</html>
现在,我写我的页面,
孩子.ftl
<@override name="body">
<div class='content'>
Powered By rapid-framework
</div>
<@super/>
</@override>
<@extends name="base.ftl"/>
然后,我有以下输出,
<html>
<head>
base_head_content
</head>
<body>
<div class='content'>
Powered By rapid-framework
</div>
base_body_content
</body>
</html>
这不是一个好主意吗?