我想存储当前节点的路径,以便我可以在XSLT中的表达式中重用它。有可能吗?
<!-- . into $path? -->
<xsl:value-of select="$path" />
答案 0 :(得分:2)
嗨,我想存储路径 当前节点,所以我可以重用它 XSLT中的表达式。有可能吗?
任何给定节点都可以构造一个XPath表达式,在评估时,它精确地选择此节点。实际上存在多个选择同一节点的XPath表达式。
有关构造此类XPath表达式的确切XSLT代码,请参阅this answer。
问题是在XSLT 1.0或XSLT 2.0中的同一转换期间无法评估此XPath表达式,除非使用了EXSLT扩展函数dyn:evaluate(并且很少有XSLT 1.0处理器实现dyn) :evaluate())。
使用<xsl:variable>
指令在XSLT中以更简单的方式实现您的目标:
<xsl:variable name="theNode" select="."/>
此变量可在其范围内的任何位置引用为$theNode
,,并可在应用或调用模板时作为参数传递。
答案 1 :(得分:1)
不,使用vanilla XSLT 1.0是不可能的。没有简单的方法来检索给定节点的XPath表达式字符串,并且绝对无法评估看起来像 XPath 的字符串,就好像它是 XPath一样。
有一些扩展支持动态评估XPath表达式,但这些扩展与每个XSLT处理器都不兼容。
在任何情况下,如果您提供有关实际尝试的更多细节,可能还有另一种方法。
答案 2 :(得分:0)
正如@Dimitre和@Tomalak指出的那样,我不认为它在同一个转换中有一些值 来获取表示给定节点的XPath表达式的字符串,然后选择节点“解析”这样的字符串。我可以看到在不同的转换中执行操作的一些价值。
除此之外,这个样式表:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="/">
<xsl:for-each select=".|//node()|//@*">
<xsl:variable name="vPath">
<xsl:apply-templates select="." mode="getPath"/>
</xsl:variable>
<xsl:value-of select="concat($vPath,'
')"/>
<xsl:call-template name="select">
<xsl:with-param name="pPath" select="$vPath"/>
</xsl:call-template>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="/|node()|@*" mode="getPath" name="getPath">
<xsl:apply-templates select="parent::*" mode="getPath"/>
<xsl:text>/</xsl:text>
<xsl:choose>
<xsl:when test="self::*">
<xsl:value-of select="concat(name(),'[',
count(preceding-sibling::*
[name() =
name(current())]) + 1,
']')"/>
</xsl:when>
<xsl:when test="count(.|../@*)=count(../@*)">
<xsl:value-of select="concat('@',name())"/>
</xsl:when>
<xsl:when test="self::text()">
<xsl:value-of
select="concat('text()[',
count(preceding-sibling::text()) + 1,
']')"/>
</xsl:when>
<xsl:when test="self::comment()">
<xsl:value-of
select="concat('comment()[',
count(preceding-sibling::comment()) + 1,
']')"/>
</xsl:when>
<xsl:when test="self::processing-instruction()">
<xsl:value-of
select="concat('processing-instruction()[',
count(preceding-sibling::
processing-instruction()) + 1,
']')"/>
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template name="select">
<xsl:param name="pPath"/>
<xsl:param name="pContext" select="/"/>
<xsl:param name="pInstruction" select="'value-of'"/>
<xsl:variable name="vPosition"
select="number(
substring-before(
substring-after($pPath,
'['),
']'))"/>
<xsl:variable name="vTest"
select="substring-before(
substring-after($pPath,
'/'),
'[')"/>
<xsl:variable name="vPath" select="substring-after($pPath,']')"/>
<xsl:choose>
<xsl:when test="$vPath">
<xsl:call-template name="select">
<xsl:with-param name="pPath" select="$vPath"/>
<xsl:with-param name="pContext"
select="$pContext/*[name()=$vTest]
[$vPosition]"/>
<xsl:with-param name="pInstruction"
select="$pInstruction"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="vContext"
select="$pContext/node()
[self::*[name()=$vTest]|
self::comment()[$vTest='comment()']|
self::text()[$vTest='text()']|
self::processing-instruction()
[$vTest =
'processing-instruction()']]
[$vPosition]|
$pContext[$pPath='/']|
$pContext/@*[name() =
substring($pPath,3)]
[not($vTest)]"/>
<xsl:choose>
<xsl:when test="$pInstruction='value-of'">
<xsl:value-of select="$vContext"/>
</xsl:when>
<xsl:when test="$pInstruction='copy-of'">
<xsl:copy-of select="$vContext"/>
</xsl:when>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
使用此输入:
<?somePI pseudoAttributes?>
<root>
<!-- This is a comment -->
<node attribute="Value">text</node>
</root>
输出:
/
text
/processing-instruction()[1]
pseudoAttributes
/root[1]
text
/root[1]/comment()[1]
This is a comment
/root[1]/node[1]
text
/root[1]/node[1]/@attribute
Value
/root[1]/node[1]/text()[1]
text