如何选择最后一个节点

发布于 2024-10-23 13:51:12 字数 416 浏览 0 评论 0原文

我有以下代码:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掀纱窥君容 2024-10-30 13:51:12

假设 getSer() 返回一个节点集,您可以将其最后一个元素传递给 cppNamespacePath(),如下所示:

<xsl:variable name="helper"
    select="func:cppNamespacePath( func:getSer(service)[last()] )"/>

Assuming the getSer() returns a node-set, you can pass the last of it's elements to cppNamespacePath() like so:

<xsl:variable name="helper"
    select="func:cppNamespacePath( func:getSer(service)[last()] )"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文