gpt4 book ai didi

linux - 如何选择最后一个节点

转载 作者:太空宇宙 更新时间:2023-11-04 04:29:13 24 4
gpt4 key购买 nike

我有以下代码:

<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"/>

但它给出了 undefined variable “itName”的错误我必须从 for 循环中获取最后的输出。并在 for 循环之外使用它。请告诉我解决方案提前致谢。

最佳答案

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

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

关于linux - 如何选择最后一个节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5312233/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com