struts2 jsp页面要取得action传过来的值
findlist.jsp
<s:iterator value ="findlist" var="p">
action;
findlist = this.productService.find(keyWord,pageNo , pageSize );
jsp需要取得action传过来的值,需要在action中设置findlist属性,并且设置该属性的get,set方法。
findlist.jsp
<s:iterator value ="findlist" var="p">
action;
findlist = this.productService.find(keyWord,pageNo , pageSize );
jsp需要取得action传过来的值,需要在action中设置findlist属性,并且设置该属性的get,set方法。