我的Freemarker模板中有Map
个变量。如何在Java(map.get(<key>)
)中获取地图中特定键的值。
我知道如何在FTL中迭代地图的键和值。但我想要一个没有迭代的解决方案,就像get()
接口的Java Map
方法一样。
答案 0 :(得分:11)
map[dynamicKey]
or map.staticKey
if the key is a string. Due to historical limitations, if the key isn't a string, map?api.get(nonStringKey)
.