首页 > 其他 > 详细

Struts2-result中的参数传递

时间:2014-03-06 22:29:58      阅读:447      评论:0      收藏:0      [点我收藏+]
 
当使用type=“redirectAction” 或type=“redirect”提交到一个action并且需要传递一个参数时。这里是有区别的: 
使用type=“redirectAction”时,结果就只能写Action的配置名,不能带有后缀:“.action” 
Java代码  
       
<action name="Login" class="steven.actions.LoginAction">  
  <result name="success" type="redirectAction">User?u_id=${loginBean.u_id}</result>  
</action>  
 
使用type=“redirect”时,结果应是action配置名+后缀名 
Java代码  
<action name="Login" class="steven.actions.LoginAction">  
   <result name="success" type="redirect">User.action?u_id=${loginBean.u_id}</result>  
</action> 

Struts2-result中的参数传递,布布扣,bubuko.com

Struts2-result中的参数传递

原文:http://www.cnblogs.com/cheng07045406/p/3584028.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!