判断
{{if .Attended}}
如果Attended是true的话,这句是第二行
{{else}}
如果Attended是false的话,这句是第二行
{{end}}
循环
我们可以使用range命令来循环一个数组或者链表中的元素。所以要获取 Emails 数组的信息,我们可以这么干
{{range .Emails}}
...
{{end}}
{{with .Jobs}}
{{range .}}
An employer is {{.Employer}}
and the role is {{.Role}}
{{end}}
{{end}}
变量
template包,允许您定义和使用变量。这样做的动机,可能我们会考虑通过把他们的名字当做电子邮件地址前缀打印出来。我们又使用这个类型
type Person struct {
Name string
Emails []string
}
为了访问email的所有字符串, 可以用 range,如下
{{range .Emails}}
{{.}}
{{end}}
但是需要指出的是,我们无法用'.' 的形式来访问字段 Name,因为当他被转化成数组元素时,字段Name并不包括其中。解决方法是,将字段Name 存储为一个变量,那么它就能在任意范围内被访问。变量在模板中用法是加前缀'$'。所以可以这样
{{$name := .Name}}
{{range .Emails}}
Name is {{$name}}, email is {{.}}
{{end}}
有疑问加站长微信联系(非本文作者)