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>>();
まず、バッキング Java クラスにハッシュマップを追加します (参照はこちら)。
context.put("myhashmap", hashmap);
次に、Velocity テンプレートの任意の場所を参照できます。たとえば、次のようになります。
<span>$myhashmap.get("foo").get(1).toString()</span>
これは私のために働いた:
$!myhashmap.get($!foo).toString();
注:foo私の場合は変数です。
foo