我有一个xsl文档,其中包含一些属性,我必须按名称计算该文档中唯一属性的数量。
例如xml:
<Collection>
<item>
<Id attr1="value1">123</Id>
<property>u1</property>
</item>
<item>
<Id>1234</Id>
<property>u2</property>
</item>
<item attr1="value11">
<Id>12345</Id>
<property>u3</property>
</item>
<item attr2="value2">
<Id>123456</Id>
<property attr3="value3">u4</property>
</item>
</Collection>
有4个属性,但是attr1是重复的,所以答案是3。我有兴趣用xslt 1.0来做这件事。
现在我有这样的东西,但不能做一个计数器
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:key name="node" match="@*" use="local-name()"/>
<xsl:template match="/">
<xsl:for-each select="//@*">
<xsl:variable name="name" select="local-name()"/>
<xsl:if test="generate-id(.) = generate-id(key('node', $name))">
<!-- increment counter? -->
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
感谢
<xsl:value-of select="count(//@*[generate-id(.) = generate-id(key('node', local-name()))])"/>