首先让我说我知道position()
,但我似乎无法弄清楚如何让它在这种情况下发挥作用。
我要做的是遍历我的文本并找到所有图像。这些将变成说“图1”等的链接。该数字由不同节点集中相应节点的position()
提供。
以下是我的XML示例:
<understanding-individual-question>
<section id="18" handle="questions">Questions</section>
<entry id="162">
<images items="3">
<item id="215">
<description mode="normal" handle="winter-frozen-period-for-stile-s-pond" word-count="6">Winter frozen period for Stile’s Pond.</description>
<file size="73 KB" path="/uploads" type="image/jpg">
<filename>lakefrozen-1276880623.jpg</filename>
<meta creation="2010-06-18T13:03:43-04:00" width="532" height="479" />
</file>
<title mode="normal" handle="stiles-pond-frozen" word-count="3">Stile's Pond Frozen</title>
</item>
</images>
</entry>
</understanding-individual-question>
我已经尝试了许多不同的方法来获取XML中另一个地方的item
节点的位置,但我不断返回错误,或者NaN
。
以下是我尝试过的三个XSLT示例:
<xsl:template match="information//img">
<xsl:variable name="link" select="substring-after(@src,'uploads/')" />
<em>(<a rel="figure" href="{@src}">
<xsl:text>See Figure </xsl:text>
<!-- Method 1: Returns all as 'NaN' -->
<xsl:number value="/data/understanding-individual-question/entry/images/item[file/filename = $link][position()]" format="1"/>
<!-- Method 2: Returns all as '1' -->
<xsl:for-each select="/data/understanding-individual-question/entry/images/item[file/filename = $link]">
<xsl:number value="position()" format="1"/>
</xsl:for-each>
<!-- Method 3: Returns all as '2' -->
<xsl:number value="position()" format="1"/>
</a>.)</em>
</xsl:template>
我已经检查了我的XPATH
并且它返回了正确的节点,没问题。但是,无论我做什么,它都不会返回节点的position()
!我无法弄清楚原因。
我尝试关注this question's solutions,但我不断获得NaN
。
任何人都知道如何做到这一点?
答案 0 :(得分:2)
使用第二种方法:
count(preceding-sibling::item) +1