不具合
| 不具合 ID 番号 | BUG-000153809 |
|---|---|
| 送信されました | November 17, 2022 |
| 最終更新日 | June 5, 2024 |
| 適用対象 | ArcGIS Online |
| 見つかったバージョン | November 2022 |
| オペレーティング システム | N/A |
| オペレーティング システムのバージョン | N/A |
| ステータス | Non-Reproducible |
Use template literals instead of the @ notation. For instance, instead of:
var P = Portal("https://wwww.arcgis.com")
var itemID='ITEMID'
var featureID=$feature["FIELD_NAME"]
Var FS= FeatureSetByPortalItem(P, itemID,0,['FIELD_NAME2'])
var Mathes =Filter(FS, `FIELD_NAME= @featureID')
Use the following syntax:
var P = Portal("https://wwww.arcgis.com")
var itemID='ITEMID'
var featureID=$feature["FIELD_NAME"]
Var FS= FeatureSetByPortalItem(P, itemID,0,['FIELD_NAME2'])
var Mathes =Filter(FS, `FIELD_NAME= ${featureID}`)
不具合 ID: BUG-000153809
ソフトウェア:
ArcGIS エキスパートのサポートを受ける
Esri Support アプリのダウンロード