jsp 中${param.username}和${requestSpoce.username}的区别

        在jsp页面取值时会经常看到有时使用${param.username},有时使用${requestSpoce.username},到底这两者有何不同呢?上网百度了一下,原来是这样的:前者会依次调用pageContext.getAttribute("username") -> request.getAttribute("username") ->session.getAttribute("username") -> application.getAttribute("username"),只要找到某一个不为空的值就立刻返回。 而${requestScope.username}只返回request.getAttribute("username")

转载于:https://www.cnblogs.com/xp123/p/5823131.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
给下面代码增加分页功能,要求细致,逻辑清楚,<form action="./../selectNews" method="post"> <input type="text" name="key" id="key" placeholder="请输入标题"/> <input type="submit" value="查询"/> <a href="zhuce.jsp">发布新闻</a> <a href="../user01/index.jsp">返回主页</a> </form> <table> <thead> <tr> <th>新闻编号</th> <th>新闻标题</th> <%-- <th>新闻内容</th>--%> <th>新闻类别</th> <th>发布人</th> <th>发布时间</th> <th>状态</th> <th>是否头条</th> <th colspan="4" align="center">操作</th> </tr> </thead> <tbody> <c:forEach items="${newslist}" var="u"> <tr> <td>${u.nid}</td> <td>${u.title}</td> <%-- <td>${u.content}</td>--%> <td>${u.type}</td> <td>${u.userName}</td> <td>${u.pubTime}</td> <td> <c:choose> <c:when test="${u.state==0}"><span style="color: ghostwhite">未审核</span></c:when> <c:when test="${u.state==1}"><span style="color: green">审核通过</span></c:when> <c:otherwise><span style="color: red">未通过</span></c:otherwise> </c:choose> </td> <td> <c:choose> <c:when test="${u.top==0}">否</c:when> <c:otherwise>是</c:otherwise> </c:choose> </td> <c:choose> <c:when test="${user.rule==1}"> <td> <a href="../NewsDetailServlet?nid=${u.nid}&op=show">查看</a> </td> <td> <a href="../NewsDetailServlet?nid=${u.nid}&op=update">修改</a> </td> <td> <a href="NewsDelete.jsp?nid=${u.nid}&title=${u.title}&userName=${user.userName}">删除</a> </td> <td> <a href="Newsshenhe.jsp?nid=${u.nid}&title=${u.title}&userName=${user.userName}">审核</a> </td> </c:when> <c:when test="${user.rule==0 && user.uid==u.uid}"> <td><a href="../NewsDetailServlet?nid=${u.nid}&op=show">查看</a></td> <td><a href="../NewsDetailServlet?nid=${u.nid}&op=update">修改</a></td> <td><a href="NewsDelete.jsp?nid=${u.nid}&title=${u.title}&userName=${user.userName}">删除</a></td> </c:when> <c:otherwise> <td><a href="../NewsDetailServlet?nid=${u.nid}&op=show">查看</a></td> </c:otherwise> </c:choose> </tr> </c:forEach> </table>
最新发布
06-01
首先,我们需要在表单添加一个分页控件,例如: <form action="./../selectNews" method="post"> <input type="text" name="key" id="key" placeholder="请输入标题"/> <input type="submit" value="查询"/> <a href="zhuce.jsp">发布新闻</a> <a href="../user01/index.jsp">返回主页</a> <!-- 分页控件 --> <div class="pagination"> <c:if test="${currentPage > 1}"> <a href="./../selectNews?page=${currentPage - 1}&key=${param.key}">上一页</a> </c:if> <c:forEach begin="${minPage}" end="${maxPage}" var="i"> <c:choose> <c:when test="${i == currentPage}"> <span class="current">${i}</span> </c:when> <c:otherwise> <a href="./../selectNews?page=${i}&key=${param.key}">${i}</a> </c:otherwise> </c:choose> </c:forEach> <c:if test="${currentPage < totalPages}"> <a href="./../selectNews?page=${currentPage + 1}&key=${param.key}">下一页</a> </c:if> </div> </form> 我们使用了一个名为 "pagination" 的 div 元素来包含分页控件。其,currentPage 表示当前页数,totalPages 表示总页数,minPage 和 maxPage 分别表示当前页数左边和右边的页数范围。 在 Java Servlet ,我们需要对请求参数进行解析,计算出分页所需的各个参数,并将它们传递给 JSP 页面。例如: int page = Integer.parseInt(request.getParameter("page")); int pageSize = 10; // 每页显示的记录数 int start = (page - 1) * pageSize; // 计算起始记录数 String key = request.getParameter("key"); List<News> newslist = NewsDAO.selectNews(start, pageSize, key); int totalCount = NewsDAO.getNewsCount(key); int totalPages = (int) Math.ceil(totalCount * 1.0 / pageSize); int minPage = Math.max(1, page - 5); int maxPage = Math.min(totalPages, page + 5); request.setAttribute("newslist", newslist); request.setAttribute("currentPage", page); request.setAttribute("totalPages", totalPages); request.setAttribute("minPage", minPage); request.setAttribute("maxPage", maxPage); request.getRequestDispatcher("newslist.jsp").forward(request, response); 在 JSP 页面,我们需要根据传递过来的参数来生成分页控件。我们可以使用 JSTL 标签库的 forEach 标签来循环生成分页链接。例如: <c:if test="${currentPage > 1}"> <a href="./../selectNews?page=${currentPage - 1}&key=${param.key}">上一页</a> </c:if> <c:forEach begin="${minPage}" end="${maxPage}" var="i"> <c:choose> <c:when test="${i == currentPage}"> <span class="current">${i}</span> </c:when> <c:otherwise> <a href="./../selectNews?page=${i}&key=${param.key}">${i}</a> </c:otherwise> </c:choose> </c:forEach> <c:if test="${currentPage < totalPages}"> <a href="./../selectNews?page=${currentPage + 1}&key=${param.key}">下一页</a> </c:if> 注意,我们在分页链接传递了当前页数和查询关键字两个参数,这样在用户点击分页链接时就可以保持查询关键字不变,同时跳转到相应的页数。 最后,我们需要在查询语句添加 LIMIT 子句来限制返回的记录数。例如: SELECT * FROM news WHERE title LIKE '%${key}%' LIMIT ${start}, ${pageSize}; 其,${start} 和 ${pageSize} 分别表示起始记录数和每页显示的记录数。这样就可以实现分页功能了。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值