當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript ArcGIS FeatureForm submit事件用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

AMD: require(["esri/widgets/FeatureForm"], (FeatureForm) => { /* code goes here */ });

ESM: import FeatureForm from "@arcgis/core/widgets/FeatureForm";

類: esri/widgets/FeatureForm

繼承: FeatureForm > Widget > Accessor

自從:用於 JavaScript 4.9 的 ArcGIS API

用法說明

FeatureForm submit事件的定義如下:

submit


當調用 submit() 方法時觸發。調用FeatureLayer.applyEdits()方法更新要素的屬性。

屬性:

類型說明
valid String[]

有效的字段名稱。

invalid String[]

無效的字段名稱。

values Object

字段名稱的鍵值對及其所有值的對象,無論它們是否已更新。

例子:

// Listen to the feature form's submit event.
featureForm.on("submit", function(){
  if (editFeature) {
    // Grab updated attributes from the form.
    const updated = featureForm.getValues();

    // Loop through updated attributes and assign
    // the updated values to feature attributes.
    Object.keys(updated).forEach(function(name) {
      editFeature.attributes[name] = updated[name];
    });

    // Setup the applyEdits parameter with updates.
    const edits = {
      updateFeatures: [editFeature]
    };
    applyEdits(edits);
  }
});

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 FeatureForm submit event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。