XSL 顺序排序执行

问题描述 投票:0回答:1
xml xslt
1个回答
0
投票

首先对颜色列表进行排序,然后根据材质列表进行排序?

试试这个方法:

XSLT 1.0 + EXSLT 节点集() 函数

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="Shirt">
    <xsl:copy>
        <!-- pre-sort -->
        <xsl:variable name="pre-sort">
            <xsl:apply-templates select="Material" mode="first-pass"/>
        </xsl:variable>
        <!-- output -->
        <xsl:apply-templates select="exsl:node-set($pre-sort)/Material">
            <xsl:sort select="Color[1]/@Name"/>
        </xsl:apply-templates>
    </xsl:copy>
</xsl:template>

<xsl:template match="Material" mode="first-pass">
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:apply-templates select="Color">
            <xsl:sort select="@Name" />
        </xsl:apply-templates>
    </xsl:copy> 
</xsl:template>

</xsl:stylesheet>
© www.soinside.com 2019 - 2024. All rights reserved.