为了账号安全,请及时绑定邮箱和手机立即绑定

为什么员工界面按下一页没反应,部门界面就ok,谁帮我看看

<struts>

     <package name="ssh" namespace="/" extends="struts-default">

     <action name="employee_*" class="employeeAction" method="{1}" >

     <result name="input">/index.jsp</result>

     <result name="success" type="redirect">/frame.jsp</result>

     <result name="findAll">/frame/listEmployee.jsp</result>

     </action>

public String findAll(){

PageBean<Employee> pageBean = employeeService.findByPage(currentPage);

ActionContext.getContext().getValueStack().push(pageBean);

    return "findAll";

    }

 <s:if test="currentPage != 1">

       <a href="${pageContext.request.contextPath }/employee_findAll.action?currentPage=1">[首页]</a>&nbsp;&nbsp;

       <a href="${pageContext.request.contextPath }/employee_findAll.action?currentPage=<s:property value="currentPage-1"/>">[上一页]</a>&nbsp;&nbsp;

   </s:if>

    <s:if test="currentPage != totalPage">

       <a href="${pageContext.request.contextPath }/employee_findAll.action?currentPage=<s:property value="currentPage+1"/>">[下一页]</a>&nbsp;&nbsp;

       <a href="${pageContext.request.contextPath }/employee_findAll.action?currentPage=<s:property value="totalPage"/>">[尾页]</a>&nbsp;&nbsp;

    </s:if>


正在回答

2 回答

员工的action中,你的currPage要提供set方法

0 回复 有任何疑惑可以回复我~

呃呃呃,我也不知道,,,

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么员工界面按下一页没反应,部门界面就ok,谁帮我看看

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信