JSTL核心標籤庫——重定向URL處理標籤、網頁匯入標籤
阿新 • • 發佈:2018-12-08
<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 http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Hello</title> </head> <body> <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> </body> </html>
<%@ 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} 登陸home.jsp</body> </html>
測試:http://127.0.0.1/home.jsp?name=zs&age=18
響應:歡迎 zs 登陸
<c:url>URL重寫標籤
在使用者關閉Cookie功能時,自動用Session ID來進行URL重寫。