我想数数。特定重复父节点的子节点。我需要这个计数来维护转换后特定元素的 id。
以下是我拥有的 request.xml 的格式
<Party><Notes><Notes><Party>
<Party><Notes><Notes></Party>
转换后的 xml 应该是:
<Attachment id=1></Attachment>
<Attachment id=2></Attachment>
<Attachment id=3></Attachment>
<Attachment id=4></Attachment>
我尝试使用:
<xsl:value-of select="concat('Attachment',count(preceding-sibling::Notes))" />
但它没有给出正确的值。任何指导都会帮助我解决这个问题。