XForms:设置绑定中的默认日期
我是 Xforms 新手,需要帮助设置节点集绑定中的默认日期。我需要将默认日期设置为当前日期 + 30 天。我该怎么做?
I am new to Xforms and need help setting the default date in nodeset binding. I need to set the default date to be current date + 30 days. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望结果为
xs:dateTime
,那么下面的代码就可以解决问题:If you want the result to be an
xs:dateTime
, then the following will do the trick:想通了。在绑定中,我将日期的默认值设置为 days-to-date(days-from-date(local-date()) + 30)。但这并没有设定时间。我的字段类型为 xs:datetime。
Figured it out. In the binding, I set the default for the date to days-to-date(days-from-date(local-date()) + 30). But this does not set the time though. And my field is of type xs:datetime.