我正在寻找在XSL / FO一个for循环。
例如xml
<data> <record id="1"/> <record id="2"/> <record id="3"/> <record id="4"/> <record id="5"/> <record id="6"/> </data>
与xsl
<xsl:for-each select="descendant-or-self::*/record"> <xsl:value-of select="@id"/> </xsl:for-each>
我正在寻找输出654321而不是123456
这怎么可能?
使用
xsl:sort不是由@id订购,但是通过position()排序:
原文链接:https://www.f2er.com/xml/293310.html<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="/data"> <xsl:for-each select="descendant-or-self::*/record"> <xsl:sort select="position()" data-type="number" order="descending"/> <xsl:value-of select="@id"/> </xsl:for-each> </xsl:template> </xsl:stylesheet>