我使用 jxls 1.0.5 有一段时间了,最近才看到需要迁移到 2.2.5,
在 jxls 1.0.5 中,我可以在另一个语句中嵌入一个语句。
<jx:forEach items="${homeDwellers}" var="homeDweller">
<jx:forEach items="${homeDweller.chores}" var="chore">
</jx:forEach>
</jx:forEach>
这是如何使用 2.2.5 完成的,我只输入 jx:each 的评论?
A1: jx:each(items="homeDwellers" var="homeDweller" lastCell="B3")
A2: jx:each(items="homeDweller.chores" var="chore" lastCell="B2")
??