HTML 範本的 JSP 範本繼承
JSP 2.0 標記檔案提供了一個簡單而通用的範本繼承方法。實作方法如下:
基礎範本 (base.tag)
<%@tag description="Simple Wrapper Tag" pageEncoding="UTF-8"%> <html><body> <jsp:doBody/> </body></html>
範例頁 (example.jsp)
<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib prefix="t" tagdir="/WEB-INF/tags" %> <t:wrapper> <h1>Welcome</h1> </t:wrapper>
這將輸出:
<html><body> <h1>Welcome</h1> </body></html>
擴充範本
為頁面新增頁眉和頁腳部分:
通用頁面範本(genericpage.tag)
<%@tag description="Overall Page template" pageEncoding="UTF-8"%> <%@attribute name="header" fragment="true" %> <%@attribute name="footer" fragment="true" %> <html> <body> <div>
範例頁面(userpage.jsp)
<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib prefix="t" tagdir="/WEB-INF/tags" %> <t:genericpage> <jsp:attribute name="header"> <h1>Welcome ${userName}</h1> </jsp:attribute> <jsp:attribute name="footer"> <p>
可重複使用的使用者詳細資料片段(userdetail.tag)
<%@tag description="User Page template" pageEncoding="UTF-8"%> <%@tag import="com.example.User" %> <%@attribute name="user" required="true" type="com.example.User"%> First Name: ${user.firstName} <br/> Last Name: ${user.lastName} <br/> Phone: ${user.phone}<br/>
範例頁(使用userdetail.tag)
<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@taglib prefix="t" tagdir="/WEB-INF/tags" %> <t:userpage userName="${user.fullName}"> <p> <t:userdetail user="${user}"/> </p> </t:userpage>
以上是如何使用 JSP 2.0 標記檔案進行高效的 HTML 模板繼承?的詳細內容。更多資訊請關注PHP中文網其他相關文章!