鉴于此 XML:
<Table>
<ID>3589</ID>
<Type>Change Request</Type>
<Version>1</Version>
<Summary>...</Summary>
</Table>
<Table>
<ID>3596</ID>
<Version>1</Version>
<Type>Change Request</Type>
<Summary>...</Summary>
</Table>
<Table>
<ID>4818</ID>
<Type>Bug</Type>
<Version>1</Version>
<Summary>...</Summary>
</Table>
<Table>
<ID>4819</ID>
<Type>Bug</Type>
<Version>1</Version>
<Summary>...</Summary>
</Table>
<Table>
<ID>4820</ID>
<Type>Bug</Type>
<Version>2</Version>
<Summary>...</Summary>
</Table>
我使用这个 XSLT:
...
<xsl:for-each select="//Table[Version=$vn]">
<xsl:sort select="Type" />
<xsl:variable name="currentType" select="Type" />
<xsl:if test="not($currentType=preceding-sibling::Table/Type)">
<h2><xsl:value-of select="Type" /></h2>
</xsl:if>
<p><b><xsl:value-of select="ID" /></b>:<xsl:value-of select="Summary" /></p>
</xsl:for-each>
...
我需要使用什么测试来仅在类型更改时显示类型?我只希望第一次出现。现在 before-sibling::Table/Type 总是指第一个“行”
转换是在 C# 中完成的。