gpt4 book ai didi

java - 如何在表的 Velocity 模板中使用 foreach

转载 作者:行者123 更新时间:2023-11-30 10:59:25 25 4
gpt4 key购买 nike

我有一个对象发票,它有一些发票项目列表。现在我想打印我的发票。为此,我使用了 Velocity Template。但是我的模型模板没有得到我需要的格式。

我用过这个 First Used Format .

我得到了这个输出 First Format Output

对于下面的模板 Second Format

我得到了这个输出 Second Format Output

但我想要这样

Required Format

伙计们请帮助我获得所需的格式

最佳答案

试试下面的代码

<table>
<tr>
<th>Name</th>
<th>Desp</th>
<th>Qty></th>
<td>Unit Price</th>
<th>Disc</th>
<th>Total</th>
<th>vat rate</th>
<th>vat amount</th>
</tr>
#foreach ($titem in $!invoice.transactionItems)
<tr>
<td>$!titem.item.name</td>
<td>$!titem.description</td>
<td>$!titem.quantity</td>
<td>$!titem.unitPrice</td>
.....
</tr>
#end
</table>

首先,你需要编写一些html代码和css,一旦有了html模板,你就可以填写你的object value 到 html 代码,作为你的格式,你需要使用 html table 标签来展示你的结果。

关于java - 如何在表的 Velocity 模板中使用 foreach,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31912074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com