如何在不进行迭代的情况下使用变量键来查找映射的值?
因此,可以使用来在变量映射$ x上查找常量键$x.key1,但是可以这样做amap.$key吗?
$x.key1
amap.$key
您可以使用以下index功能:
index
{{index .Amap "key1"}}
从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.