我需要读取XML并根据其中一个子节点的类型需要运行不同的逻辑。如下例所示,我需要根据类型a或b递增计数器。这是为了根据类型a或b确定项目的相对位置。
<List>
<Item>
<Type>a</Type>
<value>2</value>
</Item>
<Item>
<Type>b</Type>
<value>1</value>
</Item>
<Item>
<Type>b</Type>
<value>3</value>
</Item>
<Item>
<Type>a</Type>
<value>4</value>
</Item>
</List>
我在Item
上运行foreach循环<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" indent="yes" method="xml" version="1.0"/>
<xsl:template match="/">
<JSON xmlns="">
{
<xsl:variable name="counter" select="0" />
<xsl:for-each select="List/Item">
<xsl:if test="Type='a'">
<xsl:value-of select="$counter"></xsl:value-of>
<xsl:variable name="counter" select="$counter + 1" />
</xsl:if>
</xsl:for-each>
}
</JSON>
</xsl:template>
</xsl:stylesheet>
输出是 0 0
答案 0 :(得分:1)
如果 - 似乎 - 您只想为Item
为Type
的{{1}}编号,为什么不能简单地执行此操作:
XSLT 1.0
"a"
答案 1 :(得分:0)
我通过在foreach中使用group-by逻辑来解决它,以获得相对位置而不是依赖于计数器
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" indent="yes" method="xml" version="1.0"/>
<xsl:template match="/">
<JSON xmlns="">
{
<xsl:variable name="counter" select="0" />
<xsl:for-each-group select="List/Item" group-by="Type='a'">
<xsl:for-each select="current-group()">
<xsl:if test="current-grouping-key() = true()">
<xsl:value-of select="position()"></xsl:value-of>--
</xsl:if>
</xsl:for-each>
</xsl:for-each-group>
}
</JSON>
</xsl:template>
</xsl:stylesheet>
输出:
{
1--
2--
3--
}