漏洞 ID 编号 |
BUG-000165572 |
已提交 | March 2, 2024 |
上次修改时间 | November 5, 2024 |
适用范围 | ArcGIS Survey123 |
找到的版本 | N/A |
操作系统 | N/A |
操作系统版本 | N/A |
状态 | As Designed
经开发团队审核,已确定此行为符合设计。 有关详细信息,请参阅“其他信息”部分。
|
附加信息
When querying attributes from a date field in a feature layer, the values are returned as UNIX timestamps. However, ArcGIS Survey123 web app only supports decimal date and time which means the dates must be converted.
It is recommended to use decimal date format, because then the XLSForm expressions works both in the field and web apps. The ArcGIS Survey123 web app ONLY supports decimal time. For example: date-time(int(${timestampqueried})div 86400000)
Refer the documentation https://doc.arcgis.com/en/survey123/desktop/create-surveys/decimaldatetime.htm for more information.
解决办法
Convert dates queried from the feature layer (timestamps) to decimal date time.
e.g. date-time(int(${timestampqueried})div 86400000)
重现步骤