gpt4 book ai didi

cocoa - 在 Cocoa 的 NSXML XQuery 中从 dateTime 中减去持续时间

转载 作者:行者123 更新时间:2023-12-03 16:29:42 25 4
gpt4 key购买 nike

我有以下 XQuery 代码,从我对 O'Reilly XQuery 书的阅读看来它应该可以工作:

let $now := current-dateTime()
let $month := xs:dayTimeDuration("P30D")
let $month_ago := $now - $month
return $month_ago

它在这个实时 XQuery 解释器中运行良好: http://try.zorba-xquery.com/但在 Cocoa 的 NSXML 中,它返回 XQuery 错误“运算符类型无效。”

Cocoa 的 XQuery 实现有什么我不明白的地方吗?

最佳答案

您应该使用 xs:dayTimeDurationxs:yearMonthDuration 来定义 substracting operators

作为证据,这个 XQuery:

let $now := current-dateTime()
let $month := xs:dayTimeDuration("P30D")
let $month_ago := $now - $month
return $month_ago

输出:

2011-03-23T14:32:47.156-03:00

在 Saxon、Altova、XQSharp 上测试。

来自http://www.w3.org/TR/xpath20/#mapping ,这是运算符映射:

Operator | Type(A)              | Type(B)              | Function  
A - B | numeric | numeric | op:numeric-subtract(A, B)
A - B | xs:date | xs:date | op:subtract-dates(A, B)
A - B | xs:date | xs:yearMonthDuration | op:subtract-yearMonthDuration-from-date(A, B)
A - B | xs:date | xs:dayTimeDuration | op:subtract-dayTimeDuration-from-date(A, B)
A - B | xs:time | xs:time | op:subtract-times(A, B)
A - B | xs:time | xs:dayTimeDuration | op:subtract-dayTimeDuration-from-time(A, B)
A - B | xs:dateTime | xs:dateTime | op:subtract-dateTimes(A, B)
A - B | xs:dateTime | xs:yearMonthDuration | op:subtract-yearMonthDuration-from-dateTime(A, B)
A - B | xs:dateTime | xs:dayTimeDuration | op:subtract-dayTimeDuration-from-dateTime(A, B)
A - B | xs:yearMonthDuration | xs:yearMonthDuration | op:subtract-yearMonthDurations(A, B)`

关于cocoa - 在 Cocoa 的 NSXML XQuery 中从 dateTime 中减去持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5757388/

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