在地图上测距时没有迭代次数(只有一个值和一个可选键)。您可以使用自定义功能实现您想要的。
一种可能的解决方案是使用inc()
函数在每次迭代中增加索引变量:
func main() {
t := template.Must(template.New("").Funcs(template.FuncMap{
"inc": func(i int) int { return i + 1 },
}).Parse(src))
m := map[string]string{
"one": "first",
"two": "second",
"three": "third",
}
fmt.Println(t.Execute(os.Stdout, m))
}
const src = `{{$idx := 0}}
{{range $key, $value := .}}
index: {{$idx}} key: {{ $key }} value: {{ $value }}
{{$idx = (inc $idx)}}
{{end}}`
此输出(在Go Payground上尝试)(压缩输出):
index: 0 key: one value: first
index: 1 key: three value: third
index: 2 key: two value: second
查看类似/相关问题:
Go模板删除范围循环中的最后一个逗号
在 go 模板中加入范围块
Golang 代码重复一个 html 代码 n 次