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 Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動