我将生成路径的代码提取到另一个模板中,然后从模板中调用元素和属性:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" indent="no" />
<xsl:template mode="path" match="*">
<xsl:for-each select="ancestor-or-self::*">
<xsl:value-of select="concat('/', name())" />
<xsl:if test="count(preceding-sibling::*[name() = name(current())]) != 0">
<xsl:value-of select="concat('[',
count(preceding-sibling::*[name() = name(current())]) + 1, ']')" />
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template match="*">
<xsl:if test="not(*)">
<!-- this element has no children, print its path -->
<xsl:apply-templates mode="path" select="." />
<xsl:text>
</xsl:text>
</xsl:if>
<xsl:apply-templates select="@*|*" />
</xsl:template>
<xsl:template match="@*">
<!-- for an attribute, print the path to its containing element ... -->
<xsl:apply-templates mode="path" select=".." />
<!-- ... followed by "/@attributename" -->
<xsl:value-of select="concat('/@', name(), '
')" />
</xsl:template>
</xsl:stylesheet>
XPath 数据模型的一个奇怪之处在于,虽然属性节点不被认为是其宿主元素节点的子节点,但元素被认为是其属性节点的父节点。
更新:要处理xsi:type
要求,您应该能够将该逻辑添加到您当前的兄弟计数代码中,以区别对待类型化元素。value-of
并在适当的地方添加您需要的值。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="text" indent="no" />
<xsl:template mode="path" match="*">
<xsl:for-each select="ancestor-or-self::*">
<xsl:value-of select="concat('/', name())" />
<!-- for typed elements, include the type in the path -->
<xsl:if test="@xsi:type">
<xsl:text>[@xsi:type = '</xsl:text>
<xsl:value-of select="@xsi:type" />
<xsl:text>']</xsl:text>
</xsl:if>
<xsl:if test="count(preceding-sibling::*[name() = name(current()) and
@xsi:type = current()/@xsi:type]) != 0">
<xsl:value-of select="concat('[',
count(preceding-sibling::*[name() = name(current()) and
@xsi:type = current()/@xsi:type]) + 1, ']')" />
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template match="*">
<xsl:if test="not(*)">
<!-- this element has no children, print its path -->
<xsl:apply-templates mode="path" select="." />
<xsl:text>,</xsl:text>
<xsl:value-of select="."/>
<xsl:text>
</xsl:text>
</xsl:if>
<xsl:apply-templates select="@*|*" />
</xsl:template>
<xsl:template match="@*">
<!-- for an attribute, print the path to its containing element ... -->
<xsl:apply-templates mode="path" select=".." />
<!-- ... followed by "/@attributename" -->
<xsl:value-of select="concat('/@', name(), ',', ., '
')" />
</xsl:template>
</xsl:stylesheet>
由于空节点集的字符串值是空字符串,@xsi:type = current()/@xsi:type
因此对没有 an 的元素执行操作xsi:type
是安全的,并且会产生正确的结果。
您可能还想添加
<xsl:template match="@xsi:type" />
如果您不想生成类型属性的路径。
这里值得注意的是类型逻辑和计数是正交的 - 给定
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<a xsi:type="xs:string">aaa</a>
<a xsi:type="xs:integer">1</a>
<a xsi:type="xs:string">bbb</a>
<a xsi:type="xs:integer">2</a>
</root>
你会得到路径
/root/a[@xsi:type = 'xs:string'],aaa
/root/a[@xsi:type = 'xs:integer'],1
/root/a[@xsi:type = 'xs:string'][2],bbb
/root/a[@xsi:type = 'xs:integer'][2],2
每个类型的计数(这是正确的,假设正确的命名空间绑定,XPath 会选择正确的东西)。