xsl:function 定义的函数可以替代 xpath 3.0 内联函数吗?

发布于 2024-11-30 23:35:27 字数 457 浏览 2 评论 0原文

我正在使用 xpath 3.0 规范中的这个示例:

fn:fold-left(function($a, $b) { $a + $b }, 0, 1 to 5)

我尝试用 xsl:function 定义的函数替换内联函数。

<xsl:function name="ki:plus" as="xs:integer*">
<xsl:param name="a" as="xs:integer*">
<xsl:param name="b" as="xs:integer">

    <xsl:value-of select="$a + $b">

</xsl:function>

但出现错误“fold-left 的第一个参数不能是空序列。

我做错了什么还是这不可能?

提前致谢。

I was playing with this example in the xpath 3.0 spec:

fn:fold-left(function($a, $b) { $a + $b }, 0, 1 to 5)

I tried to substitute the inline function with a function defined by xsl:function.

<xsl:function name="ki:plus" as="xs:integer*">
<xsl:param name="a" as="xs:integer*">
<xsl:param name="b" as="xs:integer">

    <xsl:value-of select="$a + $b">

</xsl:function>

But got the error that "first parameter of fold-left can't be an empty sequence.

Am I doing something wrong or is this not possible?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

策马西风 2024-12-07 23:35:27

这是一个正确的示例

<xsl:stylesheet version="3.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  xmlns:my="my:my">
  <xsl:output omit-xml-declaration="yes" indent="yes"/>

  <xsl:template match="/">
    <xsl:sequence select=
      "fold-left(my:add#2, 0, 1 to 5)
      "/>
  </xsl:template>

  <xsl:function name="my:add" as="xs:integer">
    <xsl:param name="arg1" as="xs:integer"/>
    <xsl:param name="arg2" as="xs:integer"/>

    <xsl:sequence select="$arg1 + $arg2"/>
  </xsl:function>
</xsl:stylesheet>

当应用于任何 XML 文档(未使用)时,会生成所需的正确结果

15

Here is a correct example:

<xsl:stylesheet version="3.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  xmlns:my="my:my">
  <xsl:output omit-xml-declaration="yes" indent="yes"/>

  <xsl:template match="/">
    <xsl:sequence select=
      "fold-left(my:add#2, 0, 1 to 5)
      "/>
  </xsl:template>

  <xsl:function name="my:add" as="xs:integer">
    <xsl:param name="arg1" as="xs:integer"/>
    <xsl:param name="arg2" as="xs:integer"/>

    <xsl:sequence select="$arg1 + $arg2"/>
  </xsl:function>
</xsl:stylesheet>

when applied on any XML document (not used), the wanted, correct result is produced:

15
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文