Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从速度模板中的以下哈希图中检索值?请帮忙..
LinkedHashMap<String, LinkedHashMap<Integer, Object>> hashmap = new LinkedHashMap<String, LinkedHashMap<Integer,Object>>();
首先,将 hashmap 添加到您的支持 Java 类(在此处参考)。
context.put("myhashmap", hashmap);
然后您可以在 Velocity 模板中的任何位置引用,例如:
<span>$myhashmap.get("foo").get(1).toString()</span>
这对我有用:
$!myhashmap.get($!foo).toString();
注意:foo在我的情况下是一个变量。
foo