我正在尝试获取一个简单的索引,该索引可以使用consul-template附加到Go模板代码段的输出中。环顾四周,无法找出简单的解决方案。基本上,有了这个输入
backend web_back
balance roundrobin
{{range service "web-busybox" "passing"}}
server {{ .Name }} {{ .Address }}:80 check
{{ end }}
我想看web-busybox-n 10.1.1.1:80 check
其中n是范围循环中的当前索引。范围和地图有可能吗?
答案 0 :(得分:0)
遍历地图时没有迭代编号(只有一个值和一个可选键)。您可以使用自定义功能实现所需的功能。
使用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 template remove the last comma in range loop
答案 1 :(得分:0)
下面的示例查找所有提供pmm服务的服务器,但是只会创建命令以向找到的第一个pmm服务器注册(当$ index == 0时)
{{- range $index, $service := service "pmm" -}}
{{- if eq $index 0 -}}
sudo pmm-admin config --server {{ $service.Address }}
{{- end -}}
{{- end -}}