英文:
Go templates: How do I access array item (arr[2]) in templates?
问题
你好!要在模板中访问数组项(例如a[2]),你可以使用以下语法:
{{ index .a 2 }}
这将返回数组a的第二个元素。请注意,模板中的索引从0开始计数,所以第一个元素的索引是0,第二个元素的索引是1,以此类推。希望这可以帮到你!
英文:
How do I access an array item (e.g. a[2]) in templates?
Whenever I do this I get "bad character U+005B '['"
{{ .a[2] }}
答案1
得分: 163
你需要使用index
模板函数。
{{index .a 2}}
英文:
You need to use the index
template function.
{{index .a 2}}
答案2
得分: 21
在*.yaml格式中,要访问数组项上的字段,可以使用Go模板语法:
{{ (index .Values.fields 0).fieldItem }}
其中,0表示字段数组中的索引位置,fieldItem表示要访问的字段。
英文:
to access a field on an array item as go templating in *.yaml format :
{{ (index .Values.fields 0).fieldItem }}
Index of zero(0) as in fields array of field as fieldItem .
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论