我有一个 html 文件的打印导出,它从 Map 中导入,如下所示
Template t = TemplateLoader.load("Printing/acount.html");
Map<String, Object> map = new HashMap<String, Object>();
map.put("accountName ", e.accountName);
map.put("accountAmount ", acAmount);
return t.render(map);
并将参数加载到 html 文件中
<div>
Account: <font size="3"><b>${ accountName }</b> ${accountAmount}</font> <br/>
它的出口看起来像
账户 15884 5.000
如果我想在我的导出中有多个记录怎么办?
让我们说
账户 15885 2.000
账户 15886 4.000
账户 15887 3.000
第二种情况下的html和java代码应该如何传递未知数量的记录?