strusts2标签如何遍历List和数组

工作中遇到遍历对象类型的List,然后以该对象的某个属性查询数据库某个字段组装成一个String类型的数组再遍历该数组。代码如下:
<s:iterator value="p2pBasicInformation" id='BasicInfor' status='st'> 
 <s:iterator value="getProductLabel(#BasicInfor.productCode)" id = "label" status="s">  
    <span class="p2pTag"><s:property value="label"/></span>
 </s:iterator> 
</s:iterator>

其中p2pBasicInformation为后台传过来的List,#BasicInfor.productCode为list中对象的属性,getProductLabel(#BasicInfor.productCode)以该属性作为参数调用action中的getProductLabel(String productCode)方法,该方法返回一个String[]数组,再遍历改数组的值,就OK了。

你可能感兴趣的:(strusts2标签如何遍历List和数组)