从单个节点中的属性构建XML结构

时间:2014-09-23 16:39:27

标签: xml xslt xslt-2.0

我有以下XML源:

<element not-relevant="true" bold="true" superscript="true" subscript="false" text="stuff"/>

无论如何,我需要循环遍历特定的属性(即只有那些与HTML构成相关的属性:bold / superscript / subscript等)以及其中一个属性评估为&# 39; true&#39;,输出嵌套元素以获得以下输出:

<strong>
    <sup>
        stuff
    </sup>
</strong>

我有一种感觉,我需要使用某种递归,如下所示(当然没有无限循环):

<xsl:template match="element">
    <xsl:call-template name="content">
        <xsl:with-param name="text" select="@text"/>
    </xsl:call-template>
</xsl:template>

<xsl:template name="content">
    <xsl:param name="text"/>
    <xsl:choose>
        <xsl:when test="@bold = 'true'">
            <strong>
                <xsl:copy>
                    <xsl:call-template name="content">
                        <xsl:with-param name="text" select="$text"/>
                    </xsl:call-template>
                <xsl:copy>
            </strong>
        </xsl:when>
        <xsl:when test="@subscript = 'true'">
            <sub>
                <xsl:copy>
                    <xsl:call-template name="content">
                        <xsl:with-param name="text" select="$text"/>
                    </xsl:call-template>
                <xsl:copy>
            </sub>
        </xsl:when>
        <xsl:when test="@superscript = 'true'">
            <sup>
                <xsl:copy>
                    <xsl:call-template name="content">
                        <xsl:with-param name="text" select="$text"/>
                    </xsl:call-template>
                <xsl:copy>
            </sup>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$text" disable-output-escaping="yes"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

有什么想法吗?我正在寻找最干净的XSLT 2.0解决方案并感谢您的帮助。

谢谢,

1 个答案:

答案 0 :(得分:6)

这是<xsl:next-match/>的一个很好的用例:

<xsl:template match="element" priority="1">
  <xsl:value-of select="@text" />
</xsl:template>

<xsl:template match="element[@superscript = 'true']" priority="2">
  <sup><xsl:next-match/></sup>
</xsl:template>

<xsl:template match="element[@subscript = 'true']" priority="3">
  <sub><xsl:next-match/></sub>
</xsl:template>

<xsl:template match="element[@bold = 'true']" priority="4">
  <strong><xsl:next-match/></strong>
</xsl:template>

当您将模板应用于element元素时,它将首先触发最高优先级匹配模板,如果该模板使用next-match,它将委派给下一个最高优先级,等等。您的示例{问题中的{1}}与上面的第一个,第二个和第四个模板匹配,所以最初选择“粗体”模板,然后委托“上标”模板,最后委托给通用element模板,结果为element

从这个例子中可以看出,优先级数字决定了嵌套的顺序 - 如果第二个和第四个模板的优先级被颠倒了,你会得到<strong><sup>stuff</sup></strong>