我正在从数据库中获取对象列表。我想使用速度模板将它们填充到 html 表中。
<table>
<thead>
<tr>
<td>$value1 </td>
<td>$value2 </td>
</tr>
</thead>
<tbody>
<!-- Iterate through the list (List<SomeObject>) and display them here, -->
</tbody>
</table>
对于标题我使用下面的代码,
VelocityContext context = new VelocityContext();
context.put("value1", "text1");
context.put("value2", "text2");
我从以下对象中获取数据,
List<SomeObject> obj = new ArrayList<SomeObject>();
obj.getItem1();
obj.getItem2();
所有单个项目都是字符串。如何填充表体内容?