Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

模板布局

gview模板引擎支持两种layout模板布局方式: 1. define + template方式 1. include模板嵌入方式

这两种方式均支持对模板变量的传入。

define + template

由于gview底层采用了ParseFiles方式批量解析模板文件,因此可以使用define标签定义模板内容块,通过template标签在其他任意的模板文件中引入指定的模板内容块。template标签支持跨模板引用,也就是说define标签定义的模板内容块可能是在其他模板文件中,template也可以随意引入。

...

执行后,访问 http://127.0.0.1:8199 结果如下:

include模板嵌入

当然我们也可以使用include标签来实现页面布局。

...