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


JavaScript ArcGIS Collection.findIndex用法及代碼示例


基本信息

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

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

ESM: import Collection from "@arcgis/core/core/Collection";

類: esri/core/Collection

繼承: Collection > Accessor

子類: SceneModifications

自從:用於 JavaScript 4.0 的 ArcGIS API

用法說明

Collection.findIndex函數(或屬性)的定義如下:

findIndex (callback) {Number}


如果該項目通過callback 函數中定義的測試,則返回集合中項目的索引。每個項目都傳遞給callback 函數,如果項目通過測試,則返回true,否則返回false

參數:

類型說明
callback ItemTestCallback

將評估集合中每個項目的測試函數。如果項目通過測試,則返回true,如果失敗則返回false

返回:

類型 說明
Number 返回滿足測試函數的集合項的索引。如果項目未通過測試,則返回-1

例子:

// gpcIndex is assigned the index of the first graphic whose name
// property is 'Redlands'. This result can be used in getItemAt()
let gpcIndex = graphicsLyr.graphics.findIndex(function(item){
  return item.attributes.name === "Redlands";
});

相關用法


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