XSLT 未生成预期的输出



Input XML:

<derivatives>
    <derivative id="4" name="Audio Content">
        <operator id="1" name="Reliance">
            <referenceCode code="62033815">
                <mobileCircle id="1" name="Maharashtra"/>
            </referenceCode>
        </operator>
        <operator id="22" name="Aircel">
            <referenceCode code="811327">
                <mobileCircle id="1" name="Maharashtra"/>
            </referenceCode>
        </operator>
    </derivative>
</derivatives>

预期输出 XML:

<hellotune>
    <operator>Aircel</operator>
    <vcode>811327</vcode>
</hellotune>

电流输出(错误):

<hellotune>
    <operator>Aircel</operator>
    <vcode/>
</hellotune>

XSL(不起作用):

<xsl:if test="derivatives/derivative/operator[@name='Aircel']">
    <hellotune>
        <operator>Aircel</operator>
        <vcode><xsl:value-of select="referenceCode/@code"/></vcode>
    </hellotune>
</xsl:if>

注: 使用 XSL v1.0。为简洁起见,未提及完整的 XSL。

根据您提供的 XSL,可以假定上下文节点是根节点,但从根节点开始,路径referenceCode/@code与输入中的任何内容都不匹配。在该路径之前附加derivatives/derivative/operator/将成功找到 referenceCode @code属性,但它会找到错误的属性。试试这种推送式的方法:

<xsl:template match="/">
  <xsl:apply-templates select="derivatives/derivative/operator[@name='Aircel']" />
</xsl:template>
<xsl:template match="operator">
    <hellotune>
        <operator><xsl:value-of select="@name" /></operator>
        <vcode><xsl:value-of select="referenceCode/@code"/></vcode>
    </hellotune>
</xsl:template>
元素

<vcode>中的xpath压缩不是指输入文档中的任何节点。匹配所有节点的最佳方法是使用

//

就像在你的代码中一样,你可以使用

//

参考代码/@code (但这仅供参考,使用相同的方法无法获得结果)。

您可以尝试以下方式:

<xsl:template match="/">
<hellotune>
    <xsl:for-each select="//operator">
            <xsl:if test="./@name='Aircel'">
                <operator><xsl:value-of select="@name"/></operator>
                <vcode><xsl:value-of select="referenceCode/@code"/></vcode>
            </xsl:if>
        </xsl:for-each>
</hellotune>
</xsl:template>

希望这对:)有所帮助

相关内容

  • 没有找到相关文章

最新更新