3

我正在从数据库中获取对象列表。我想使用速度模板将它们填充到 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();

所有单个项目都是字符串。如何填充表体内容?

4

1 回答 1

9

尝试以下操作:

<tbody>
#foreach( $obj in $objs )
    <tr><td>$obj.Item1</td><td>$obj.Item2</td></tr>
#end
<tbody>

我假设您的列表放在名称下的速度上下文中,objs并且您的SomeObject类有 2 个字段:item1 和 item2 以及对应的 getter。

List<SomeObject> objs = ... //prepopulated
context.put("objs", objs);

查看有关速度文档的更多信息。

于 2013-03-21T11:12:27.677 回答