logic:Iterator标签(以下简称该标签)是Struts里非常常用的一个标签其作用在于循环显示给定容器对象中的值
如此常用的标签其源代码当然需要拿出来研究一下以下列举几条研究成果
该标签内部使用Collection来表示给定的容器所有的给定容器对象(如ArrayListMap等)都会被其转化成为CollectionCollection实际就是Map和List的父类
该标签自己维护循环索引不用程序员管理索引
该标签常见的几个属性如下namepropertyscopeid
对应Struts给出的Api说明如下
name:包括要遍历Collection的Jsp页面的bean的名字(如果property没有被定义)或者是那些通过getter方法获得属性的Jsp中的Bean的名字这些getter方法返回的是Collection(如果property定义了)
property:在name命名的Jsp bean中定义的属性的名字通过getter方法返回一个Collection
scope:指示到哪里去寻找name为名字的bean如果没有定义缺省为any scope
id:如果Collection非空的话在每次遍历时候Collection中每个元素的名字
其中除了id每个元素均为Rt expr这儿的rt expr的意思就是Run Time Expression明确的说就是如果你对一个Attribute的<rtexprvalue>指定为true你就可以在这样的属性中使用<%=%>之类的东东这个配置文件在tld中
只有id是必须要说明的
关于Api说明的说明
id只是一个临时标识在下面的<bean:write里面出现的name属性要和id一致才能打印出<bean:write的property而此property就是在iterator中的属性
举例说明
以下代码生成一个阶梯状表格
系统 资源 操作
soft
res
opt
soft
res
opt
soft
res
opt
在此之前传来一个requestgetAttribute(userPurview)所以有在第一个logic中的userPurview就是在这个request里面寻找userPurview
返回的是一个list
<table width= border=>
<tr><td>系统</td>
<td>资源</td>
<td>操作</td>
</tr>
<logic:iterate id=targetSys name=userPurview scope=request>//这个id可以随便起名但是要注意下文使用的一致性
<tr bgcolor=#cccccc><td height= class=unnamed>
<bean:write name=targetSys property=cn/>//此处name和上面id保持一致property就是第一个list里面的元素
</td>
<td height= class=unnamed></td>
<td height= class=unnamed></td>
</tr>
<logic:iterate id=targetRes name=targetSys property=purviewResList>
<tr><td height= class=unnamed></td><tdheight= class=unnamed>
<bean:write name=targetRes property=cn/>
</td>
<tdheight= class=unnamed></td>
</tr>
<logic:iterate id=targetOpr name=targetRes property=purviewOprList>
<tr><td height= class=unnamed></td><tdheight= class=unnamed></td>
<tdheight= class=redzi>
<bean:write property=cn name=targetOpr/></td>
</tr>
</logic:iterate>
</logic:iterate>
</logic:iterate>
</table>
结论
多级迭代和单层差不多唯一注意的就是id和<bean:write中的name的对应上级logic的id与下级logic的name对应并且取出来的要是个Collectionname和id不一定实际需要这个bean都是虚拟的