使用xslt的组相邻节点

时间:2015-04-19 01:19:01

标签: xml xslt xslt-2.0 xsl-grouping

我知道有关群组相邻功能的问题已经被提出过了。但是出于某些原因,我无法让它发挥作用。

我在使用xslt的工作中继承了项目,而我的老板并不了解学习xslt的学习曲线是多么陡峭,以及它与程序编程有多么不同。

尽管如此,我仍然决定尽我所能地学习它,但在我学习的过程中,我仍然需要努力学习。解决以下问题的任何帮助都将受到极大的赞赏。

我有一个xml文档,其格式如下:

<document xml:lang="EN">
  <CRPg>text</CRPg>
  <CRPg>text</CRPg>
  <CRPg>text</CRPg>
  <Section/> <!--section marker-->
  <TOCChap>chapter title</TOCChap>
  <TOCAu>chapter author</TOCAu>
  <TOCChap>chapter title</TOCChap>
  <TOCAu>chapter author</TOCAu>
  <TOCChap>chapter title</TOCChap>
  <TOCAu>chapter author</TOCAu>
  <TOCChap>chapter title</TOCChap>
  <TOCAu>chapter author</TOCAu>
  <Section/> <!--section marker-->
  <Txt>body text</Txt>
  <Txt>body text</Txt>
  <Txt>body text</Txt>
  <Txt>body text</Txt>
</document>

目前它基本上没有层次结构,并且包含标记以给它结构并包含在整个文件中。我试图将所有TOC元素分组并将它们嵌套在包含元素中:

<document xml:lang="EN">
  <CRPg>text</CRPg>
  <CRPg>text</CRPg>
  <CRPg>text</CRPg>
  <Section/> <!--section marker-->
  <Wrapper> <!-- create new element to wrap around TOC and TOCAuth -->
   <TOCChap>chapter title</TOCChap>
   <TOCAu>chapter author</TOCAu>
   <TOCChap>chapter title</TOCChap>
   <TOCAu>chapter author</TOCAu>
   <TOCChap>chapter title</TOCChap>
   <TOCAu>chapter author</TOCAu>
   <TOCChap>chapter title</TOCChap>
   <TOCAu>chapter author</TOCAu>
  </Wrapper>
  <Section/> <!--section marker-->
  <Txt>body text</Txt>
  <Txt>body text</Txt>
  <Txt>body text</Txt>
  <Txt>body text</Txt>
</document>

这比我预期的要困难得多。我已经尝试了以下代码的许多不同版本,并且我已经粘贴了一个似乎最不错的版本。我意识到它还很糟糕:

<xsl:template match="*">
<xsl:for-each-group select="TOCChap | TOCAuth" group-adjacent="self::TOCChap | self::TOCAuth">
  <xsl:choose>
    <xsl:when test="current-grouping-key()">
      <wrapper>
        <xsl:apply-templates select="current-group()"/>

      </wrapper>
    </xsl:when>
    <xsl:otherwise>
      <xsl:apply-templates select="current-group()"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:for-each-group>

提前谢谢你。

3 个答案:

答案 0 :(得分:3)

您尝试无效的原因有三个:

  1. 您选择了错误的节点集;

  2. 您正在使用union运算符|而不是逻辑运算符or;

  3. 您的文档中没有名为TOCAuth的元素。

  4. 通过将指令更改为:

    来解决这三个问题
    <xsl:for-each-group select="*" group-adjacent="self::TOCChap or self::TOCAu">
    

    您将看到您正在寻找的确切结果 - 请在此处查看完整演示:http://xsltransform.net/jyH9rME

    -
    顺便说一句,您的情况几乎与使用group-adjacent的XSLT 2.0规范中给出的示例完全相同 - 请参阅此处的最后一个示例:http://www.w3.org/TR/xslt20/#grouping-examples


    <强> P.S。

    我不禁想知道为什么不利用<Section/>标记将所有您的论坛置于包装内 - 例如,应用:

    XSLT 2.0

    <xsl:stylesheet version="2.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>
    
    <!-- identity transform -->
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    
    <xsl:template match="/document">
        <xsl:copy>
            <xsl:apply-templates select="@*" />
            <xsl:for-each-group select="*" group-starting-with="Section">
                <wrapper>
                    <xsl:apply-templates select="current-group()" />
                </wrapper>  
            </xsl:for-each-group>
        </xsl:copy>
    </xsl:template>
    
    <xsl:template match="Section"/>
    
    </xsl:stylesheet>
    
    输入

    将导致:

    :<?xml version="1.0" encoding="utf-8"?>
    <document xml:lang="EN">
       <wrapper>
          <CRPg>text</CRPg>
          <CRPg>text</CRPg>
          <CRPg>text</CRPg>
       </wrapper>
       <wrapper>
          <TOCChap>chapter title</TOCChap>
          <TOCAu>chapter author</TOCAu>
          <TOCChap>chapter title</TOCChap>
          <TOCAu>chapter author</TOCAu>
          <TOCChap>chapter title</TOCChap>
          <TOCAu>chapter author</TOCAu>
          <TOCChap>chapter title</TOCChap>
          <TOCAu>chapter author</TOCAu>
       </wrapper>
       <wrapper>
          <Txt>body text</Txt>
          <Txt>body text</Txt>
          <Txt>body text</Txt>
          <Txt>body text</Txt>
       </wrapper>
    </document>
    

答案 1 :(得分:1)

你需要一个像这样的XSLT(如果没有层次结构):

<xsl:stylesheet version="2.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>
    <xsl:strip-space elements="*"/>

    <xsl:template match="node() | @*">
        <xsl:copy>
            <xsl:apply-templates select="@* , node()"/>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="/*">
        <xsl:copy>
            <xsl:attribute name="xml:lang">EN</xsl:attribute>
            <xsl:for-each-group select="*" group-adjacent="name() = ('TOCChap','TOCAu')">
                <xsl:choose>
                    <xsl:when test="current-grouping-key()">
                        <Wrapper>
                            <xsl:apply-templates select="current-group()"/>
                        </Wrapper>
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:apply-templates select="current-group()"/>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:for-each-group>
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>

答案 2 :(得分:0)

<xsl:template match="document">
    <xsl:copy>
        <xsl:apply-templates select="@*"/>
        <xsl:for-each-group select="*" group-adjacent="boolean(self::TOCChap | self::TOCAu)">
            <xsl:choose>
                <xsl:when test="current-grouping-key()">
                    <wrapper>
                        <xsl:apply-templates select="current-group()"/>
                    </wrapper>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:apply-templates select="current-group()"/>
                </xsl:otherwise>
            </xsl:choose>
        </xsl:for-each-group>
    </xsl:copy>

</xsl:template>
<xsl:template match="node() | @*">
    <xsl:copy>
        <xsl:apply-templates select="node() | @*"/>
    </xsl:copy>
</xsl:template>