首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

struts1怎么将前台的数据传入到后台

2013-07-01 
struts1如何将前台的数据传入到后台?在jsp中使用了jmesa插件,它是循环遍历,生成了一个列表,需要把这个界面

struts1如何将前台的数据传入到后台?
在jsp中使用了jmesa插件,它是循环遍历,生成了一个列表,需要把这个界面中的数据以list集合的方式传入到后台action,这个不会了~


failureMessage.jsp

<html:form method="post" action="failureMessage.do"  >
<table class = "TableJMESA" cellpadding="0" cellspacing="0">
<tr>
<td>
<div id="tabletag">
<jmesa:tableFacade id="pdtag" items="${result}" maxRows="15" editable="false" stateAttr="restore" var="bean" rowFilter="">
<jmesa:htmlTable>
<jmesa:htmlRow>
<jmesa:htmlColumn titleKey="checkbox" property="checkbox" cellRenderer="com.founder.esb.jmesa.OverflowCell">
<html:checkbox property="checkbox" onclick="singleCheckbox()" ></html:checkbox>
</jmesa:htmlColumn>
<jmesa:htmlColumn titleKey="message.messageControlId"     property="messageControlId"     cellRenderer="com.founder.esb.jmesa.OverflowCell"/>
<jmesa:htmlColumn titleKey="message.sendingApplication"   property="sendingApplication"   cellRenderer="com.founder.esb.jmesa.OverflowCell"/>
<jmesa:htmlColumn titleKey="message.sendingFacility"      property="sendingFacility"      cellRenderer="com.founder.esb.jmesa.OverflowCell"/>

</jmesa:htmlRow>
</jmesa:htmlTable>
</jmesa:tableFacade>
</div>
</td>
</tr>
</table>
</html:form> Struts
[解决办法]
这个没用过,搜下相关的资料

热点排行