小编典典

使用Go模板中的变量键访问地图值

go

如何在不进行迭代的情况下使用变量键来查找映射的值?

因此,可以使用来在变量映射$ x上查找常量键$x.key1,但是可以这样做amap.$key吗?


阅读 229

收藏
2020-07-02

共1个答案

小编典典

您可以使用以下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.
2020-07-02