如何通过一组节点进行循环,其中节点名称具有数字编号,并且数字在一系列中递增?
例如:
<nodes>
<node1>
<node2>
...
<node10>
</nodes>
答案 0 :(得分:2)
除非我完全错过了你需要的东西,否则就像这样简单。
<xsl:template match="nodes">
<xsl:for-each select="*">
<!-- Do what you want with each node. -->
</xsl:for-each>
</xsl:template>
答案 1 :(得分:1)
递归命名模板可以做到这一点:
<xsl:template name="processNode">
<xsl:param name="current" select="1"/>
<xsl:variable name="currentNode" select="*[local-name() = concat('node', $current)]"/>
<xsl:if test="$currentNode">
<!-- Process me -->
<xsl:call-template name="processNode">
<xsl:with-param name="current" select="$current + 1"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
或者,如果您不关心订单,只需要一个普通的模板:
<xsl:template match="*[starts-with(local-name(), 'node')]">
</xsl:template>
答案 2 :(得分:0)
<xsl:template match="nodes">
<xsl:apply-templates select="*">
<!-- the xsl:sort is redundant if the input already is in correct order -->
<xsl:sort select="substring-after(name(), 'node')" data-type="number" />
</xsl:apply-templates>
</xsl:template>
<xsl:template match="nodes/*">
<!-- whatever -->
</xsl:template>