基本语法

go 统一使用了 {{}} 作为左右标签,没有其他的标签符号。

使用 . 来访问当前位置的上下文

使用 $ 来引用当前模板根级的上下文

使用 $var 来访问创建的变量

模板中支持的 go 语言符号

  1. {{"string"}} // 一般 string
  2. {{`raw string`}} // 原始 string
  3. {{'c'}} // byte
  4. {{print nil}} // nil 也被支持

模板中的 pipeline

可以是上下文的变量输出,也可以是函数通过管道传递的返回值

  1. {{. | FuncA | FuncB | FuncC}}

当 pipeline 的值等于:

  • false 或 0
  • nil 的指针或 interface
  • 长度为 0 的 array, slice, map, string

那么这个 pipeline 被认为是空

1. if … else … end

  1. {{if pipeline}}{{end}}

if 判断时,pipeline 为空时,相当于判断为 False

支持嵌套的循环

  1. {{if .IsHome}}
  2. {{else}}
  3. {{if .IsAbout}}{{end}}
  4. {{end}}

也可以使用 else if 进行

  1. {{if .IsHome}}
  2. {{else if .IsAbout}}
  3. {{else}}
  4. {{end}}

2. range … end

  1. {{range pipeline}}{{.}}{{end}}

pipeline 支持的类型为 array, slice, map, channel

range 循环内部的 . 改变为以上类型的子元素

对应的值长度为 0 时,range 不会执行,. 不会改变。

  1. pages := []struct {
  2. Num int
  3. }{{10}, {20}, {30}}
  4. this.Data["Total"] = 100
  5. this.Data["Pages"] = pages

使用 .Num 输出子元素的 Num 属性,使用 $. 引用模板中的根级上下文

  1. {{range .Pages}}
  2. {{.Num}} of {{$.Total}}
  3. {{end}}

使用创建的变量,在这里和 go 中的 range 用法是相同的。

  1. {{range $index, $elem := .Pages}}
  2. {{$index}} - {{$elem.Num}} - {{.Num}} of {{$.Total}}
  3. {{end}}

range 也支持 else

  1. {{range .Pages}}
  2. {{else}}
  3. {{/* 当 .Pages 为空 或者 长度为 0 时会执行这里 */}}
  4. {{end}}

3. with … end

  1. {{with pipeline}}{{end}}

with 用于重定向 pipeline

  1. {{with .Field.NestField.SubField}}
  2. {{.Var}}
  3. {{end}}

也可以对变量赋值操作

  1. {{with $value := "My name is %s"}}
  2. {{printf . "slene"}}
  3. {{end}}

with 也支持 else

  1. {{with pipeline}}
  2. {{else}}
  3. {{/* 当 pipeline 为空时会执行这里 */}}
  4. {{end}}

4. define

define 可以用来定义自模板,可用于模块定义和模板嵌套

  1. {{define "loop"}}
  2. <li>{{.Name}}</li>
  3. {{end}}

使用 template 调用模板

  1. <ul>
  2. {{range .Items}}
  3. {{template "loop" .}}
  4. {{end}}
  5. </ul>

5. template

  1. {{template "模板名" pipeline}}

将对应的上下文 pipeline 传给模板,才可以在模板中调用

Beego 中支持直接载入文件模板

  1. {{template "path/to/head.html" .}}

Beego 会依据你设置的模板路径读取 head.html

在模板中可以接着载入其他模板,对于模板的分模块处理很有用处

6. 注释

允许多行文本注释,不允许嵌套

  1. {{/* comment content
  2. support new line */