问答详情
源自:3-1 分页的简单实现

为什么还要传入command和description到前端?

既然得到了List

并已经传给前端了,前端遍历集合之后就能得到值,为什么还需要将从前台获取到的command和descriptin传入前端,既然有为什么还需要再传,我觉得传page就可以了呀,求大佬解答,谢谢!
//向页面传值
request.setAttribute("command", command);		
request.setAttribute("description", description);		
request.setAttribute("page", p);

提问者:骑着猪去追梦 2019-01-28 17:27

个回答

  • 慕斯卡2336669
    2019-02-21 09:50:56

    这个地方你传入page是为了获取分页信息,为后文分页处理做准备。但是command和description是为了返回你要完成的查询功能所需要的信息。