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

2024-11-19 20:17:33
推荐回答(2个)
回答1:

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

回答2:

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