如何使用基于XML节点的XSLT进行排序'属性值?

时间:2012-09-06 15:14:47

标签: xml xslt sorting

我经历了许多类似的问题和XSLT教程,但我仍然无法弄清楚XSLT是如何工作的。

以下是我想要排序的XML: -

<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" version="1.1">
<file product="mxn" source-language="en">
<body>

<!-- Menu -->

    <msg-unit id="Menu.PerformTask">
        <msg>Perform Task</msg>
        <note>When selected performs a task.</note>
    </msg-unit>
    <msg-unit id="Menu.Add">
        <msg>Add New</msg>
        <note>When selected Adds a new row.</note>
    </msg-unit>

</body>
</file>
</xliff>

预期输出为: -

<?xml version="1.0" encoding="UTF-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.1" version="1.1">
<file product="mxn" source-language="en">
<body>

<!-- Menu -->

    <msg-unit id="Menu.Add">
        <msg>Add New</msg>
        <note>When selected Adds a new row.</note>
    </msg-unit>
    <msg-unit id="Menu.PerformTask">
        <msg>Perform Task</msg>
        <note>When selected performs a task.</note>
    </msg-unit>

</body>
</file>
</xliff>

<msg-unit>代码需要根据其id属性的值进行排序。其他代码(如评论)应该是它们所在的位置。< / p>

我尝试了很多组合,但我对XSLT没有任何线索。以下是我上次的尝试。

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
    <xsl:output method="xml" indent="yes" />
    <xsl:template match="/">
        <xsl:copy-of select="*">
            <xsl:apply-templates>
                <xsl:sort select="attribute(id)" />
            </xsl:apply-templates>
        </xsl:copy-of>
    </xsl:template>
</xsl:stylesheet>

这个简单地吐出了它得到的任何XML,没有任何排序。

1 个答案:

答案 0 :(得分:0)

修改已更新 - 此模板将仅按msg-unit@id个元素进行排序,而不会干扰xml的其余部分。

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

    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:choose>
                <xsl:when test="*[local-name()='msg-unit']">
                    <xsl:apply-templates select="@* | node()">
                        <xsl:sort select="@id" />
                    </xsl:apply-templates>
                </xsl:when>
                <xsl:otherwise>
                    <xsl:apply-templates select="@* | node()" />
                </xsl:otherwise>
            </xsl:choose>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>