-1

嗨,我是一个新人,如果你回答我的问题会很有帮助。

考虑我的 XML

<A>
<B>
 <b1>a</b1>
 <b2>b</b2>
</B>
<C>
 <c1>a</c1>
 <c2>b</c2>
</C>
</A>.

在 XSLT 中,我需要找出节点 B 和 C 的子子节点数。如果 B 中有 2 个子节点,则 XSLT 会动态打印 #1 a 和 #2 b。类似地,如果有 n 个孩子 #1 值,#2 值............ #n 值。请帮助解决这个问题。对于上述情况,我需要 XSLT 设计代码。

4

1 回答 1

0

要“动态”输出元素的值,并以子元素的“数字”作为前缀,您可以使用xsl:value-of select="position()"/>

假设你的输出应该是文本(不是 xml)试试这个:

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

    <xsl:template match="*"  mode ="printChildNr" >
        <!-- children of B or C-->
        <xsl:text>children of </xsl:text>
        <xsl:value-of select="name()"/>
        <xsl:text>:&#10; </xsl:text>
        <xsl:for-each select="*" >
            <xsl:text>#</xsl:text>
            <xsl:value-of select="position()"/>
            <xsl:text> </xsl:text>
            <!-- text content of child-->
            <xsl:value-of select="text()"/>
            <xsl:text>&#10;</xsl:text>
        </xsl:for-each>
    </xsl:template>

    <xsl:template match="/*" >
        <xsl:apply-templates select="B | C"  mode="printChildNr"/>
    </xsl:template>
</xsl:stylesheet>

mode="printChildNr"不是必需的,但如果您必须扩展 xlt 可能会有所帮助。

输入:

<?xml version="1.0" encoding="utf-8" ?>
<A>
    <B>
        <b1>a</b1>
        <b2>b</b2>
    </B>
    <C>
        <c1>a</c1>
        <c2>b</c2>
        <c3>b</c3>
    </C>
</A>

输出:

 children of B:
 #1 a
 #2 b
 children of C:
 #1 a
 #2 b
 #3 b
于 2013-05-24T08:10:03.323 回答