测试当前(根)节点名称是否等于字符串

时间:2012-08-27 11:54:59

标签: xslt xslt-2.0

我有一个XML,可能类似于以下之一:

// #1
<A>
     <B>... stuff ...</B>
</A>

// #2
<B>... stuff ...</B>

我需要将它们转换为响应节点,对于这两个实例看起来应该是相同的。有点像这样:

<fooMethodResponse>
    ... one thing from A if A was root ...
    ... stuff from B ...
</fooMethodResponse>

如何在不重复自己的情况下做到最简单?我现在已经这样做了:

<xsl:template match="/A">
        <fooMethodResponse>
            <xsl:apply-templates select="B" mode="get-B" />
        <xsl:element name="processId">
            <xsl:value-of select="@id" />
        </xsl:element>
    </fooMethodResponse>
</xsl:template>

<xsl:template match="/B">
    <fooMethodResponse>
        <xsl:apply-templates select="." mode="get-B" />
    </fooMethodResponse>
</xsl:template>

<xsl:template match="B" mode="get-B"></xsl:template>

这里的问题是我正在重复响应包装器,我想在一个地方只有这个。想我可以做这样的事情:

<xsl:template match="/">
    <fooMethodResponse>
        <xsl:choose>
            <xsl:when test="node name is A">
            <xsl:when test="node name is B">
        </xsl:choose>
    </fooMethodResponse>
</xsl:template>

但我无法弄清楚如何编写测试以检查根元素的节点名称。根元素是否以某种方式处理不同?


我想提供更精确的例子,但在那里有相当多的商业资料,所以我试图将其归结为:p

2 个答案:

答案 0 :(得分:0)

我不确定你想做什么,需要更精确的输入和输出样本。 不过,以下XSLT(1.0)可以作为解决问题的基础:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">
    <xsl:template match="/">
        <fooMethodResponse>
            <xsl:apply-templates/>
        </fooMethodResponse>
    </xsl:template>
    <xsl:template match="A">
        <xsl:text>... one thing from A if A was root ...</xsl:text>
        <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="B">
        <xsl:text>... stuff from B ...</xsl:text>
    </xsl:template>
</xsl:stylesheet>

输入#1:

<A>
     <B>... stuff ...</B>
</A>

结果#1是:

<fooMethodResponse>... one thing from A if A was root ...
    ... stuff from B ...
</fooMethodResponse>

输入#2:

<B>... stuff ...</B>

结果#2是:

<fooMethodResponse>... stuff ...</fooMethodResponse>

希望这有帮助!

答案 1 :(得分:0)

您可以做的是将模式与|运算符组合,例如

<xsl:template match="/A[B] | /B">
  <fooMethodResponse>...</fooMethodResponse>
</xsl:template>

这是否有意义或简化了你的情况我不确定,因为我不明白你想要在fooMethodResponse内为两个不同的元素。考虑为您发布的每个可能的输入样本拼出每个结果样本,我不清楚您当前的单个结果样本。