我需要阅读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>
我正在运行项目
<?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>
输出是00
如果 - 看起来 - 您只想编号 Item
是 Type
是 "a"
,为什么不能简单地做:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/List">
<JSON>
<xsl:text> { </xsl:text>
<xsl:for-each select="Item[Type='a']">
<xsl:value-of select="position()"/>
<xsl:text>-- </xsl:text>
</xsl:for-each>
<xsl:text>} </xsl:text>
</JSON>
</xsl:template>
</xsl:stylesheet>
i通过在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--
}