• JSTL核心标签库——重定向标签、URL处理标签、网页导入标签


    <c:redirect>重定向标签

      相当于HttpServletResponse的sendRedirect()方法

    <%@page contentType="text/html" pageEncoding="UTF-8" %>
    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>Hello</title>
    </head>
    <body>
    
    <c:if test="${1 > 2}">
        <c:redirect url="/home.jsp">
            <c:param name="name" value="${param.name}"></c:param>
            <c:param name="age" value="${param.age}"></c:param>
        </c:redirect>
    </c:if>
    
    </body>
    </html>
    index.jsp
    <%@ page contentType="text/html" pageEncoding="UTF-8" %>
    <!DOCTYPE html>
    <html>
    <head>
        <title>Home</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
        欢迎 ${param.name} 登陆
    </body>
    </html>
    home.jsp

    测试:http://127.0.0.1/home.jsp?name=zs&age=18
    响应:欢迎 zs 登陆


    <c:url>URL重写标签 

      在用户关闭Cookie功能时,自动用Session ID来进行URL重写。

        <a href="<c:url value="/home.jsp"></c:url>"></a>
        <form action="<c:url value="/home.jsp"></c:url>"></form>

    <c:import>标签网页导入标签

    包括其他JSP网页至目前网页的方式:
    1、通过include指示元素
    2、通过标准标签<jsp:include>
    3、<c:import>标签,可以看作是<jsp:include>的加强版

    Demo:

    <%@page contentType="text/html" pageEncoding="UTF-8" %>
    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <!DOCTYPE html>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Hello</title>
    </head>
    <body>
        <c:import url="/home.jsp">
            <c:param name="name" value="${param.name}"></c:param>
        </c:import>
        <br>
        年龄:${param.age}
    </body>
    </html>
    index.jsp
    <%@ page contentType="text/html" pageEncoding="UTF-8" %>
    <!DOCTYPE html>
    <html>
    <head>
        <title>Home</title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
        欢迎 ${param.name} 登陆
    </body>
    </html>
    home.jsp

    测试:http://127.0.0.1/index.jsp?name=zs&age=18

    响应:

    欢迎 zs 登陆
    年龄:18  

    观察:地址栏没有变化;当前页面的内容也输出了

    还可以导入其它Web应用程序中的网页:

    <%@page contentType="text/html" pageEncoding="UTF-8" %>
    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <!DOCTYPE html>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Hello</title>
    </head>
    <body>
        年龄:${param.age}
        <%-- charEncoding属性用来指定要导入的网页的编码 --%>
        <c:import url="https://www.baidu.com" charEncoding="UTF-8">
            <c:param name="name" value="${param.name}"></c:param>
        </c:import>
        <br>
    </body>
    </html>
    index.jsp

    观察:地址栏没有变化;当前页面的内容也输出了;百度的功能还正常。

  • 相关阅读:
    常用的 HTML 头部标签
    placeholder的兼容处理方法
    用Meta标签代码让360双核浏览器默认极速模式打开网站不是兼容模式
    终于有人把P2P、P2C、O2O、B2C、B2B、C2C的区别讲透了!还有许多其它类别的类型分享
    JS判断android ios系统 PC端和移动端
    一路的前端编辑器
    图片压缩的在线好工具
    关于文本换行的问题
    字符、字节的概念及其区别
    application/x-www-form-urlencoded接口响应报文中文乱码
  • 原文地址:https://www.cnblogs.com/Mike_Chang/p/10088575.html
Copyright © 2020-2023  润新知