如何使用xpath获取完整文档中父节点的位置?
说我有以下xml:
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
<cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
</catalog>
我有一个XSLT将其转换为HTML,如下所示(仅限片段):
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:number format="1. "/><br/>
<xsl:apply-templates select="title"/>
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title">
<xsl:number format="1" select="????" /><br/>
Title: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
我应该在????的地方写些什么?获取文档中父CD标记的位置。 我尝试过很多表达式,但似乎没有任何效果。可能是我完全错了。
<xsl:number format="1" select="catalog/cd/preceding-sibling::..[position()]" />
<xsl:number format="1" select="./parent::..[position()]" /><br/>
<xsl:value-of select="count(cd/preceding-sibling::*)+1" /><br/>
我将第二个解释为选择当前节点的父轴,然后告诉当前节点的父节点的位置。为什么不起作用?这样做的正确方法是什么。
仅供参考:我希望代码能够打印当前标题标签uder处理的父CD标签的位置。
请有人告诉我该怎么做。
答案 0 :(得分:18)
count(../preceding-sibling::cd) + 1
你可以run it here(注意我删除了你输出的其他号码,只是为了清晰起见)。
您选择了正确的行,但请记住谓词仅用于过滤节点,而不是用于返回信息。所以:
../*[position()]
...有效地说“找到有我职位的父母”。它返回节点,而不是位置本身。谓词只是一个过滤器。
在任何情况下使用position()
都会有陷阱,它可用于返回当前上下文节点仅的位置 - 而不是另一个节点。
答案 1 :(得分:4)
Utkanos的答案很好但我的经验是,当xml文档很大时,这可能会导致性能问题。
在这种情况下,您可以简单地在父级中传递父级的位置。
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="cd">
<p>
<xsl:number format="1. "/><br/>
<xsl:apply-templates select="title">
<xsl:with-param name="parent_position" select="position()"/> <!-- Send here -->
</xsl:apply-templates>
<xsl:apply-templates select="artist"/>
</p>
</xsl:template>
<xsl:template match="title">
<xsl:param name="parent_position"/> <!-- Receive here -->
<xsl:number format="1" select="$parent_position"/><br/>
Title: <span style="color:#ff0000">
<xsl:value-of select="."/></span>
<br />
</xsl:template>
结果:
<html xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><body>
<p>1. <br>1<br>
Title: <span style="color:#ff0000">Empire Burlesque</span><br>Bob Dylan</p>
<p>2. <br>1<br>
Title: <span style="color:#ff0000">Hide your heart</span><br>Bonnie Tyler</p>
</body></html>
答案 2 :(得分:1)
<xsl:number format="1" select="????" />
我应该在????的地方写些什么?得到父母的位置 文件中的cd标签。
首先,上述XSLT指令在语法上是非法的 - <xsl:number>
指令不能(不能)具有select
属性。
使用强>:
<xsl:number format="1" count="cd" />