Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Xforms 的新手,需要帮助设置节点集绑定中的默认日期。我需要将默认日期设置为当前日期 + 30 天。我该怎么做呢?
如果您希望结果为xs:dateTime,那么以下方法可以解决问题:
xs:dateTime
current-dateTime() + xs:dayTimeDuration('P30D')
弄清楚了。在绑定中,我将日期的默认设置为days-to-date(days-from-date(local-date()) + 30)。但这并没有设定时间。我的字段类型为 xs:datetime。