有两个list是嵌套关系,外层list的每个对象有某个属性,根据该属性值不同,内层list不同
如下例:外层list取自action中的categoryList数据,循环输出了name和yl1属性值。在每一个外层对象下又会循环内层list,要求是内层的supername属性值和外层的name属性值相等。然后输出内层的每一个对象的threadCount属性值。
<s:iterator value="categoryList" var="cate"> <tr> <td><s:property value="#cate.name"/></td> <td><s:property value="#cate.yl1"/></td> </tr> <tr></tr> <tr> <th width="width:40%">版面</th> </tr> <s:iterator value="boardList1" var="board"> <s:if test="supername == [1].name"> <!-- 内层循环依赖外层循环的属性,[1]表明是外层循环,栈原理 --> <tr> <th><s:property value="#board.threadCount"/></th> </tr> </s:if> </s:iterator> </s:iterator>原文链接:https://www.f2er.com/javaschema/285005.html