@Results( 中 params 怎么用

Posted ConfidentLiu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@Results( 中 params 怎么用相关的知识,希望对你有一定的参考价值。

 http://blog.csdn.net/z69183787/article/details/16342553

struts2的@Result annotation 如何添加params,并且在页面取值

1、action跳转至jsp

后台:(需有get set 方法)

 

[java] view plain copy
 
  1. @SuppressWarnings("rawtypes")  
  2.     @Action(value="/loadFileList",results={  
  3.             @Result(name="attachList",location="/attach/attachList.jsp",params={"attachMemo1","${attachMemo1}"}),  
  4.             @Result(name="attachList1",location="/attach/attachList1.jsp"),  
  5.             @Result(name="attachListHT",location="/attach/attachListHT.jsp")})  


前台:

 

 

[html] view plain copy
 
  1. <%out.println(request.getAttribute("attachMemo1")); %>  


2、action跳转至action

 

后台:(stptuser为 action中的bo)

 

[java] view plain copy
 
  1. @Action(value="stptUserUpdate",results={  
  2.             @Result(name="stptUserEdited",params={"actionName","stptUserView","stptUserId","%{stptUser.id}"},type="redirectAction")  
  3.             })    


或者

 

 

[java] view plain copy
 
  1. @Result(name="success",   
  2.   type="redirectAction",   
  3.   location="d-list",   
  4.   params={"id", "%{id}"}   
  5. )   


另一个action获取

 

 

[java] view plain copy
 
    1. @Action(value="stptUserView",results={  
    2.             @Result(name="success",location="/userManage/stptUserView.jsp")  
    3.             })        
    4.     public String stptUserView(){  
    5.         String id = StringUtil.getNotNullValueString(super.getServletRequest().getParameter("stptUserId"));  
    6.         this.stptUser = this.stptUserService.findStptUserById(Long.parseLong(id));  
    7.         List<ManagerVo> list = this.stptUserService.getUserInfo(id);  
    8.         List<ManagerVo> agentList = this.stptUserService.getAgentInfo(id);  
    9.         super.getServletRequest().setAttribute("voList", list);  
    10.         super.getServletRequest().setAttribute("agentList", agentList);  
    11.         return SUCCESS;  
    12.     }  

以上是关于@Results( 中 params 怎么用的主要内容,如果未能解决你的问题,请参考以下文章

如何将对象从 MongoDB 发送到玉?

Mongoose .find 带有 req.params 数组?和 res.json 每个值和计数的数组?

让 forEach 等待回调

jQuery ajax-param()

微信小程序连接Java后台

PHP精确计算 主要用于货币的计算用