一种解决方案是使plus1函数成为一个直接作用于 值的闭包codec:
// first create a codec instance
c := codec {a, 0}
// now define the function as a closure with a reference to c
fns := template.FuncMap{
"plus1": func() int {
c.Count++
return c.Count
},
}
// now we don't need to pass anything to it in the template
t := template.Must(template.New("abc").Funcs(fns).Parse(`{{$l := len .Names}}{{range $k, $v := .Names}}{{if ne (plus1) $l}}{{$k}} {{$v}} {{end}}{{end}}.`))
输出是:
one 1 three 3
我猜这就是你的目标?并且该值在c执行结束时保留。
侃侃无极
慕斯709654
拉莫斯之舞
相关分类