include 标签是模板开发中最最常用的标签之一,它可以在模板中包含其它模板的内容;用法如下:

<include file='模版1,模版2,...' />

请不要在include 的模板文件中使用模板布局或者模板继承

file 属性的定义规则:

以前台simlpeboot3主题为例:

控制器/操作

<include file="public/header" /> 
<!--
以上表示包含当前应用视图下 public/header.html 文件,
假设当前应用是portal应用,实际文件路径为:
public/themes/simpleboot3/portal/public/header.html
-->

应用@目录1/文件名 应用@文件名

<include file="portal@index/head" /> 
<!--
以上表示包含当前主题portal目录下的index/head.html 文件,
实际文件路径为:
public/themes/simpleboot3/portal/index/head.html
-->
<include file="public@header" /> 
<!--
以上表示包含当前主题public目录下的header.html 文件,
实际文件路径为:
public/themes/simpleboot3/public/header.html
-->

results matching ""

    No results matching ""