Go语言模板:for循环结构

huangapple go评论96阅读模式
英文:

Go lang template: for construction

问题

Golang的http/template具有替换功能和if结构,但我没有找到for结构。我该如何遍历一个切片?像这样:

{{range $index, $element := .xs}}
  你好,{{.Name}}!
{{end}}
英文:

Golang http/template has substitution features, if construction, but I didn't find for construction. How can I iterate through a slice? Like this:

{{for x in xs}}
  Hello, {{x.Name}}!
{{end}}

答案1

得分: 16

使用range

{{range xs}}
  你好,{{.Name}}!
{{end}}
英文:

use range

{{range xs}}
  Hello, {{.Name}}!
{{end}}

huangapple
  • 本文由 发表于 2012年11月28日 11:11:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/13597164.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定