laptop and a wrench

不具合

Portal for ArcGIS 11.3: The URL parameter data_version in ArcGIS Experience Builder is double-encoded, causing improper version parsing and resulting in incorrect switching of branch versions.

ArcGIS Experience Builder
不具合 ID 番号 BUG-000171477
送信されましたOctober 14, 2024
最終更新日August 5, 2025
適用対象ArcGIS Experience Builder
見つかったバージョン11.3
オペレーティング システムWindows Server
オペレーティング システムのバージョン2019 64 Bit
ステータスIn Product Plan

対処法

Decode the data_version parameter manually:

  • In ArcGIS Experience Builder app, modify the code to decode the data_version URL parameter before it is processed by the widget.
  • Use the decodeURIComponent() function to ensure that double-encoded characters, such as %25253A, are correctly decoded into : (colon), allowing the widget to recognize and handle the versions properly.

Example:

const decodedVersion = decodeURIComponent(t.data_version);

const versionParts = decodedVersion.split(":");

this.setState({

urlStartUpVersion: versionParts[1] // Use the correct part of the version

});

再現の手順

不具合 ID: BUG-000171477

ソフトウェア:

  • ArcGIS Experience Builder

バグのステータスが変更されたときに通知を受け取る

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

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

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

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

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

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