英文:
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}}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论