我有一个 XSL 变量matchedNodes
它保存 XML 数据。这意味着
<xsl:copy-of select="$matchedNodes"/>
将生成如下所示的 XML
<home name="f">
<standardpage>
<id text="a1"></id>
</standardpage>
<searfchpage>
<id text="a2"></id>
</searfchpage>
<searfchpage>
<id text="a3"></id>
</searfchpage>
</home>
我想对此 XML 进行排序,以便searfchpage
节点始终排在第一位。有什么办法可以做到这一点吗?
简单的排序(<searfchpage>
移动到顶部,保持其余的子顺序):
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="home">
<xsl:copy>
<xsl:apply-templates select="@*" />
<xsl:apply-templates select="searfchpage" />
<xsl:apply-templates select="*[not(self::searfchpage)]" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
复杂排序(允许您定义任意顺序,无论是通过参数动态还是通过硬编码字符串静态):
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="sortOrder" select="'searfchpage,standardpage,otherpage'" />
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="home">
<xsl:copy>
<xsl:apply-templates select="@*">
<xsl:apply-templates select="*">
<xsl:sort select="string-length(
substring-before(concat($sortOrder, ',', name()), name())
)" />
<xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
试试这个,
输入:
<home name="f">
<standardpage>
<id text="a1"></id>
</standardpage>
<searfchpage>
<id text="a2"></id>
</searfchpage>
<searfchpage>
<id text="a3"></id>
</searfchpage>
</home>
XSL:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="@*">
<xsl:sort select="name()"/>
</xsl:apply-templates>
<xsl:apply-templates select="node()">
<xsl:sort select="name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
输出
<home name="f">
<searfchpage>
<id text="a2"/>
</searfchpage>
<searfchpage>
<id text="a3"/>
</searfchpage>
<standardpage>
<id text="a1"/>
</standardpage>
</home>