如何只输出几个节点



我有如下的xml。

<Result>
    <customer>
        <id>123</id>
        <lastName>John1</lastName>
        <firstName>Doe1</firstName>
        <phone>1234578900</phone>
    </customer>
    <customer>
        <id>456</id>
        <lastName>John2</lastName>
        <firstName>Doe2</firstName>
        <phone>1234587900</phone>
    </customer>
    <customer>
        <id>789</id>
        <lastName>John3</lastName>
        <firstName>Doe3</firstName>
        <phone>1234467900</phone>
    </customer>
    <customer>
        <id>012</id>
        <lastName>John4</lastName>
        <firstName>Doe4</firstName>
        <phone>1236567900</phone>
    </customer>
    <customer>
        <id>235</id>
        <lastName>John5</lastName>
        <firstName>Doe5</firstName>
        <phone>1232567900</phone>
    </customer>
    <customer>
        <id>568</id>
        <lastName>John6</lastName>
        <firstName>Doe6</firstName>
        <phone>1237567900</phone>
    </customer>
</Result>

我只需要输出5个客户结果。如果请求的客户少于5个,那么我需要输出所有客户。但是如果请求超过5个,我只需要输出5个结果。如何使用样式表实现这一点

输出:

<Result>
    <customer>
        <id>123</id>
        <lastName>John1</lastName>
    </customer>
    <customer>
        <id>456</id>
        <lastName>John2</lastName>
    </customer>
    <customer>
        <id>789</id>
        <lastName>John3</lastName>
    </customer>
    <customer>
        <id>012</id>
        <lastName>John4</lastName>
    </customer>
    <customer>
        <id>235</id>
        <lastName>John5</lastName>
    </customer>
</Result>

这很琐碎:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/Result">
    <xsl:copy>
        <xsl:for-each select="customer[position() &lt;= 5]">
            <xsl:copy>
                <xsl:copy-of select="id | lastName"/>
            </xsl:copy>
        </xsl:for-each>
    </xsl:copy>
</xsl:template>
</xsl:stylesheet>

相关内容

  • 没有找到相关文章

最新更新