既然得到了List
并已经传给前端了,前端遍历集合之后就能得到值,为什么还需要将从前台获取到的command和descriptin传入前端,既然有为什么还需要再传,我觉得传page就可以了呀,求大佬解答,谢谢!//向页面传值 request.setAttribute("command", command); request.setAttribute("description", description); request.setAttribute("page", p);
这个地方你传入page是为了获取分页信息,为后文分页处理做准备。但是command和description是为了返回你要完成的查询功能所需要的信息。