laptop and a wrench

漏洞

In ArcGIS QuickCapture 1.24.3, the documented Field Calculation Arcade expression using HasValue() fails to return expected results.

ArcGIS QuickCapture
漏洞 ID 编号 BUG-000181229
已提交November 25, 2025
上次修改时间December 29, 2025
适用范围ArcGIS QuickCapture
找到的版本1.24
操作系统Apple iOS
操作系统版本26.0
状态Under Consideration

解决办法

Use the IsEmpty() Arcade function instead. Refer to the following code below:

// Create a feature set using the 'Regions' layer in the map

var regions = FeatureSetByName($map, 'Regions', ['name']);

// Intersect the current location with the regions and

// get the first region

var region = First(Intersects($feature, regions));

//IsEmpty function workaround

if (IsEmpty(region)) {

return "EMPTY";

} else {

return region["name"];

}

重现步骤

漏洞 ID: BUG-000181229

软件:

  • ArcGIS QuickCapture

当漏洞状态发生变化时获得通知

下载 Esri 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项