我有以下代码:
<xsl:variable name="helper"
select="func:getSer(service)"/>
<xsl:for-each select="$helper">
<xsl:variable name="itName" select="func:cppNamespacePath(.)"/>
<xsl:text>
</xsl:text>
</xsl:for-each>
<xsl:value-of select="$itName"/>
但它给出了未定义变量“itName”的错误 我必须得到for循环的最后一个输出。并在for循环外使用它。请告诉我解决方案 提前谢谢。
答案 0 :(得分:0)
假设getSer()
返回一个节点集,你可以将它的最后一个元素传递给cppNamespacePath()
,如下所示:
<xsl:variable name="helper"
select="func:cppNamespacePath( func:getSer(service)[last()] )"/>