我有一个片段:Keys []* datastore.Key
我如何在模板文件中索引其中一个?我猜到{{.Keys[3] }}
,但这不起作用,我搜索了很多,但没有任何线索。
欢迎任何建议,谢谢。
答案 0 :(得分:65)
使用index
命令,如下所示:
{{index .Keys 3}}
答案 1 :(得分:32)
如html / template包中所述,大多数示例实际上位于文本/模板pkg docs中。见http://golang.org/pkg/text/template/
来自文档
index
Returns the result of indexing its first argument by the
following arguments. Thus "index x 1 2 3" is, in Go syntax,
x[1][2][3]. Each indexed item must be a map, slice, or array.