-
change
在集合中添加、重新排序或删除项目后触发。使用影响 Collection 类型属性的其他类的方法也会导致触发此事件,例如 Map.add() 、 Map.remove() 、 Map.reorder() 。
例如,
map.layers.add(newLyr)
和map.add(newLyr)
使用 Map.add() 将新层添加到map.layers
集合将导致此事件触发。更改事件可用于通知开发人员/用户对集合的更改。
-
类型 说明 added Array使用 add() 或 addMany() 添加到集合中的项目数组。
moved Array使用 reorder() 在集合中移动的项目数组。
removed Array使用 remove()、removeMany()、removeAt() 或 removeAll() 从集合中删除的项目数组。
属性:
例子:
// This function will fire each time a layer is either added, // moved, or removed from the map.layers Collection map.layers.on("change", function(event){ let newLayers = event.added; // An array of layers added to the map.layers Collection let reorderedLayers = event.moved; // An array of layers moved in the Collection let removedLayers = event.removed; // An array of layers removed from map });
-
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/core/Collection"], (Collection) => { /* code goes here */ });
ESM:
import Collection from "@arcgis/core/core/Collection";
类:
esri/core/Collection
继承: Collection > Accessor
自从:用于 JavaScript 4.0 的 ArcGIS API
用法说明
Collection change事件
的定义如下:
相关用法
- JavaScript ArcGIS Collection after-add事件用法及代码示例
- JavaScript ArcGIS Collection after-remove事件用法及代码示例
- JavaScript ArcGIS Collection before-changes事件用法及代码示例
- JavaScript ArcGIS Collection before-add事件用法及代码示例
- JavaScript ArcGIS Collection before-remove事件用法及代码示例
- JavaScript ArcGIS Collection after-changes事件用法及代码示例
- JavaScript ArcGIS Collection用法及代码示例
- JavaScript ArcGIS Collection.addMany用法及代码示例
- JavaScript ArcGIS Collection.add用法及代码示例
- JavaScript ArcGIS Collection.lastIndexOf用法及代码示例
- JavaScript ArcGIS Collection.ofType用法及代码示例
- JavaScript ArcGIS Collection.pop用法及代码示例
- JavaScript ArcGIS Collection.reverse用法及代码示例
- JavaScript ArcGIS Collection.find用法及代码示例
- JavaScript ArcGIS Collection.removeMany用法及代码示例
- JavaScript ArcGIS Collection.toArray用法及代码示例
- JavaScript ArcGIS Collection.some用法及代码示例
- JavaScript ArcGIS Collection.remove用法及代码示例
- JavaScript ArcGIS Collection.concat用法及代码示例
- JavaScript ArcGIS Collection.unshift用法及代码示例
- JavaScript ArcGIS Collection.splice用法及代码示例
- JavaScript ArcGIS Collection.sort用法及代码示例
- JavaScript ArcGIS Collection.every用法及代码示例
- JavaScript ArcGIS Collection.push用法及代码示例
- JavaScript ArcGIS Collection.indexOf用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 Collection change event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。