我想知道 XSLT 样式表设计模式中是否有一种很好的方法来分离常见和特定的数据表示。
我正在尝试,但非常困惑和迷失。我将不胜感激任何可以阅读有关如何更好地分离 XSLT 样式表的建议、技巧和提示。而且,非常感谢以下示例的帮助,因为它不起作用=/谢谢!
我需要创建各种具有不同外观的 HTML 文档,这些文档可以重用一些数据。例如文档的日期、签名详细信息(姓名、职位)等。此外,我使用了很多全局变量(因为 XML 的结构不正确,并且在整个文档中重复使用了数据)。
我试图做的是将所有可以在一个样式表中创建通用 HTML 结构的模板移动,然后所有特定位都将位于它们自己的样式表中。
类似于以下内容:
通用模板样式表“commonTemplates.xsl”
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- Variables Local -->
...
<xsl:output method="html" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd" indent="yes" />
<xsl:template match="/Bookings">
<html>
<head>
<!-- populated by a template in a specific stylesheet -->
<title><xsl:call-template name="docTitle"/></title>
</head>
<body>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<!-- general template for date -->
<xsl:template match="/Bookings/Booking" name="docDate">
<p class="date"><xsl:value-of select="./@Date"/></p>
</xsl:template>
<!-- general template for signature -->
<xsl:template match="/Bookings/Booking/Users" name="signature">
<xsl:param name="signatureLine" select="'Yours sincerely,'"/>
<div id="signature">
<p><xsl:value-of select="$signatureLine"/></p>
<p class="details">
<!-- populated by a template in a specific stylesheet -->
<xsl:apply-templates select="." mode="signature"/>
</p>
</div>
</xsl:template>
<!-- dummy templates signatures otherwise it complains that there is no such template -->
<xsl:template name="docTitle"/>
</xsl:stylesheet>
具体模板样式表:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- Imports -->
<xsl:import href="commonTemplates.xsl"/>
<!-- BODY CONTENT OF HTML PAGE -->
<xsl:template match="/Bookings/Booking">
<xsl:call-template name="docDate"/>
<!-- document's content -->
<div>
<xsl:call-template name="content" />
</div>
</xsl:template>
<xsl:template name="docTitle">
<xsl:text>Here is the document title</xsl:text>
</xsl:template>
<!-- some content at the end of which signature should be inserted -->
<xsl:template name="content">
<p>SOME CONTENT</p>
<xsl:apply-templates />
</xsl:template>
<!-- specific rule to insert appropriate data for signature -->
<xsl:template match="/Bookings/Booking/Users" mode="signature">
<span class="name"><xsl:value-of select="./@Name"/></span>
<span class="job"><xsl:value-of select="./@Title"/></span>
</xsl:template>
</xsl:stylesheet>
不幸的是,签名模板不起作用,我不知道为什么:(虽然它适用于 docTitle。
结果 HTML 如下所示:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<p class="date">16 February 2010</p>
<div id="secondDeposit">
<p>SOME CONTENT</p>
<!-- here I get lots of empty space -->
</div>
</body>
我想知道这样的想法是否可以普遍实施以及如何正确实施,显然我的行不通。
此外,在这种情况下哪种方法会更好:包含或导入样式表?我认为其中一个我不需要再次列出所有变量。
我将不胜感激任何帮助!对不起,很长的帖子,如果不是很清楚。
谢谢!