52

我有一片:Keys []* datastore.Key

我如何在模板文件中索引其中之一?我猜到{{.Keys[3] }}了,但这不起作用,我搜索了很多但没有任何线索。

欢迎任何建议,谢谢。

4

2 回答 2

85

像这样使用index命令:

{{index .Keys 3}}
于 2012-10-03T03:31:08.710 回答
33

如 html/template 包中所述,大多数示例实际上位于 text/template pkg 文档中。见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.
于 2012-10-03T03:42:38.057 回答