首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2: Form表单有多个submit的提交有关问题

2012-08-22 
struts2: Form表单有多个submit的提交问题页面中传的是Buser对象,BuserBean的属性为: ???? private String

struts2: Form表单有多个submit的提交问题

页面中传的是Buser对象,BuserBean的属性为:
???? private String URealname;
??? private String USex;
??? private String UTel;
??? private String UQq;
添加get、set方法。

1.register.jsp
?? <!--
??? s:submit中的method属性和struts.xml中action标签中的method属性一致(method属性指定了要调用的方法)。
???? 在s:submit中可以为一个action设置多个method,而在struts.xml中action标签中只能设置一个method。
???? 当然,在struts.xml中可以为一个action指定多个actionName(action别名)。
???? 总结:一个Action类,可以对应多个action别名,每个action别名对应多个method属性(通过s:submit标签设置)。
???? -->

?
2.struts.xml

?
3.com.dgy.action.UserAction

??

热点排行