通过struts标签获取action栈值中的变量的问题

2024年11月19日 20:17
有2个网友回答
网友(1):

使用Session推送(Action类)
Map request = (Map)ActionContext().getContext.get("session");
request.put("username",username);
b.jsp使用ActionContext.getContext().getSession.get("username");获取

网友(2):

都是不同的页面了。。。。。。使用session吧。