因此,这很棘手,因为要使其正常运行,需要完成许多工作。首先,使用html标记声明迭代器内的标记,该标记具有INDEXED =
TRUE属性和一个与名称不同的ID,我还取出了“ indexId”属性以将简单的“ index”词用于索引:
<logic:iterate name="myList" id="myListI" type="com.mycompany.MyBean"> <tr> <td> <html:input name="myListI" property="weight" indexed="true"/> </td> <td> <html:input name="myListI" property="sku" indexed="true"/> </td> <td> <html:input name="myListI" property="quantity" indexed="true"/> </td> </tr>
之后,为了使struts能够获取和设置bean的属性,您需要使用在iterate标记的id中编写的名称,在集合对象中声明EXTRA
get和set方法。在这种情况下,您将为“ myListI”编写2个额外的get和set方法:
public void setMyListI(int index, myBean value){ this.myList.add(value);}public myBean getMyListI(int index){ return this.myList.get(index);}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)