Struts2的Action里的存入一个user对象,请问如何在JSP页面获得user对象中的属性值。 20
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
在struts2中jsp要获取ation的属性方法:
1、例如action中有一个pageDAO对象,该对象有一个int型的currentPage属性,可以在jsp中这样得到currentPage的值:
//注意,action中要有pageDAO对象的get方法,属性currentPage也要有get方法。
int test=(Integer)request.getAttribute("pageDAO.currentPage");
2、EL表达式:${pageDAO.currentPage}
3、使用struts2的标签
<s:property value="pageDAO.currentPage"/>
1、例如action中有一个pageDAO对象,该对象有一个int型的currentPage属性,可以在jsp中这样得到currentPage的值:
//注意,action中要有pageDAO对象的get方法,属性currentPage也要有get方法。
int test=(Integer)request.getAttribute("pageDAO.currentPage");
2、EL表达式:${pageDAO.currentPage}
3、使用struts2的标签
<s:property value="pageDAO.currentPage"/>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询