反復せずに変数キーを使用してマップの値を検索するにはどうすればよいですか?
したがって、変数マップ$ xで$x.key1
を使用して定数キーを検索できますが、amap.$key
を実行することは可能ですか?
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.