我有一个 JSP,它有两个标签、四个复选框和四个文本字段。由于这是一组数据并且可以是动态的,因此这些字段存储在一个值对象中并存储在一个列表中,并将此列表传递给操作类。
问题是提交表单时,我无法通过表单将更新的值列表获取到 Struts 中。我正在使用 Struts 1.2.9
JSP的代码片段如下:
<logic:iterate name="monthlyGainLossForm" property="ptcList" id="ptc">
<mf:td>
<html:text name="ptc" property="ptcName" />
<html:hidden name ="ptc" property="ptcName"/>
</mf:td>
<mf:td>
<html:text name="ptc" property="ptcActive" />
</mf:td>
<html:hidden name ="ptc" property="ptcActive"/>
<mf:td>
<html:checkbox name="ptc" disabled="false" property="msaPtcLtcGLType" styleClass="input"/>
<html:hidden name ="ptc" property="msaPtcLtcGLType"/>
</mf:td>
<mf:td>
<html:text name="ptc" readonly="true" property="msaPtcLtcGLAmt" styleClass="input"/>
<html:hidden name ="ptc" property="msaPtcLtcGLType"/>
</mf:td>