-
submit
当调用 submit() 方法时触发。调用FeatureLayer.applyEdits()方法更新要素的属性。
-
类型 说明 有效的字段名称。
无效的字段名称。
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); } });
-
基本信息
以下是所在类或对象的基本信息。
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事件
的定义如下:
相关用法
- JavaScript ArcGIS FeatureForm.when用法及代码示例
- JavaScript ArcGIS FeatureForm.getValues用法及代码示例
- JavaScript ArcGIS FeatureForm.visible用法及代码示例
- JavaScript ArcGIS FeatureForm.classes用法及代码示例
- JavaScript ArcGIS FeatureForm.container用法及代码示例
- JavaScript ArcGIS FeatureForm.submit用法及代码示例
- JavaScript ArcGIS FeatureForm.on用法及代码示例
- JavaScript ArcGIS FeatureForm.formTemplate用法及代码示例
- JavaScript ArcGIS FeatureForm.headingLevel用法及代码示例
- JavaScript ArcGIS FeatureForm用法及代码示例
- JavaScript ArcGIS FeatureForm.feature用法及代码示例
- JavaScript ArcGIS FeatureForm.layer用法及代码示例
- JavaScript ArcGIS FeatureFilter用法及代码示例
- JavaScript ArcGIS FeatureFilter.spatialRelationship用法及代码示例
- JavaScript ArcGIS FeatureFilter.createQuery用法及代码示例
- JavaScript ArcGIS FeatureFilter.where用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryExtent用法及代码示例
- JavaScript ArcGIS FeatureLayer.when用法及代码示例
- JavaScript ArcGIS FeatureLayer refresh事件用法及代码示例
- JavaScript ArcGIS FeatureLayer.getFieldDomain用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryFeatureCount用法及代码示例
- JavaScript ArcGIS Feature.visible用法及代码示例
- JavaScript ArcGIS FeatureLayer.formTemplate用法及代码示例
- JavaScript ArcGIS Feature用法及代码示例
- JavaScript ArcGIS FeatureLayer.relationships用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 FeatureForm submit event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。