Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Struts 环境中我有一个 bean,在那个 bean 中我有一个称为 的矩阵beans_e,在视图中我可以用这种方式编写通常的数组信息:
beans_e
<bean:write name="ReportForm" property="beans_e" />
我现在想要的是迭代这个矩阵,打印表格单元格内的每个元素。我看了一下logic:iterate标签,但据我所知,这个标签不适用于矩阵。我该如何处理这个问题?
logic:iterate
此致
已解决,使用nested:iteratetag 而不是logic:iterate.
nested:iterate
<nested:iterate id="row" name="ReportForm" property="beans_e"> <nested:iterate id="field" name="row"> <%= field %> </nested:iterate> </nested:iterate>