4

我想知道 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>

我想知道这样的想法是否可以普遍实施以及如何正确实施,显然我的行不通。

此外,在这种情况下哪种方法会更好:包含或导入样式表?我认为其中一个我不需要再次列出所有变量。

我将不胜感激任何帮助!对不起,很长的帖子,如果不是很清楚。

谢谢!

4

2 回答 2

3

我使用以下方法:

模板文件(/templates/Main.xslt)

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" encoding="utf-8" />
  <xsl:include href="../functions/General.xslt"/>
  <xsl:template match="/">
    <html xml:lang="en">
      <head>
      </head>
      <body>
         Template Content
         <xsl:call-template name="PageContent" />
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

函数文件(/functions/General.xslt)

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <!-- Generic functions used in the site go in here -->
</xsl:stylesheet>

页面文件(/default.xslt)

其中将有一些用于在模板中定义不同的布局。这是您在进行转换时调用的 XSLT 文件。

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:import href="templates/Main.xslt" />
    <xsl:output method="xml" encoding="utf-8" />
    <xsl:template match="/">
        <xsl:apply-imports />
    </xsl:template>
    <!-- CONTENT -->
    <xsl:template name="PageContent">
      <!-- Put your specific page stuff here -->
    </xsl:template>
</xsl:stylesheet>
于 2010-02-17T17:25:06.393 回答
2

推荐的最佳做法是在样式表文件中积累常用模板,这些模板将由特定的 XSLT 应用程序导入。这些有用的 xstylesheet 文件的集合构成了有用的

当然,导入的样式表模块通常会导入其他样式表模块。

一个示例是用于 XSLT 中的函数式编程的FXSL 库。请查看 XSLT 应用程序(示例 testxxx.xsl 文件)如何导入它们需要的功能。

于 2010-02-17T21:40:59.427 回答