我试图对所有元素进行排序,然后对属性进行排序,但是我无法弄清楚如何删除空的属性
这是排序XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates >
<xsl:sort select="local-name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:template match="*[*]">
<xsl:copy>
<xsl:apply-templates select="@*" >
<xsl:sort select="local-name()" />
</xsl:apply-templates>
<xsl:apply-templates select="*" >
<xsl:sort select="local-name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
感谢您的帮助
答案 0 :(得分:3)
那么处理属性节点的唯一地方是<xsl:apply-templates select="@*">
,因此将其更改为<xsl:apply-templates select="@*[normalize-space()]">
就足够了。
答案 1 :(得分:1)
<xsl:template match="@*">
<xsl:if test="string-length(.)!=0">
<xsl:copy />
</xsl:if>
</xsl:template>
<xsl:template match="node()"> <!-- replaces the "match='@* | node()'" template -->
<xsl:copy>
<xsl:apply-templates >
<xsl:sort select="local-name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>