标签:写入 exe 表达 dispatch string str 方法 struts 表单提交
第一点:method属性学习
可以在一个action(MethodAction)里,定义多个方法method1()、method2()(类比execute方法)返回String字符串。
再在package中写入与method对应的action请求url,在每个action标签里的result标签里name对应为返回的字符串作为接收,
type属性默认为dispatcher,再返回JSP页面。
第二点:数据自动封装和自动传递
表单提交的属性值(name值)要与action里定义的属性(private name;)一致
action里的属性要有get/set方法。 这样就可以实现属性驱动(struts的属性注入)
前台也可以用EL表达式获取属性的值。
标签:写入 exe 表达 dispatch string str 方法 struts 表单提交
原文地址:http://www.cnblogs.com/zhaoxxnbsp/p/7780210.html