如何选择最后一个节点
我有以下代码:
<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 循环之外使用它。请告诉我解决方案 提前致谢。
i have following code:
<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"/>
but it gives error that undefined variable "itName"
i have to get last output from for loop. and use it outside the for loop. plz tell me solution
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 getSer() 返回一个节点集,您可以将其最后一个元素传递给 cppNamespacePath(),如下所示:
Assuming the
getSer()
returns a node-set, you can pass the last of it's elements tocppNamespacePath()
like so: