一旦創建了類的實例,就可以利用
when()
。此方法采用兩個輸入參數:callback
函數和errback
函數。callback
在類實例加載時執行。errback
如果類的實例無法加載,則執行。參數:
類型 說明 callback Function可選的 當 promise 解決時調用的函數。
errback Function可選的 當 promise 失敗時執行的函數。
返回:
類型 說明 Promise 為 callback
的結果返回一個新的承諾,該承諾可用於 chain 附加函數。例子:
// Although this example uses MapView, any class instance that is a promise may use when() in the same way let view = new MapView(); view.when(function(){ // This function will execute once the promise is resolved }, function(error){ // This function will execute if the promise is rejected due to an error });
基本信息
以下是所在類或對象的基本信息。
類:
esri/views/layers/OGCFeatureLayerView
用法說明
OGCFeatureLayerView.when
函數(或屬性)的定義如下:
相關用法
- JavaScript ArcGIS OGCFeatureLayerView.highlight用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.effect用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.queryFeatureCount用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.queryFeatures用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.filter用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.availableFields用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.featureEffect用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.queryObjectIds用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.queryExtent用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayerView.createQuery用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.collectionId用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.featureReduction用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.fullExtent用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.orderBy用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.maxScale用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.portalItem用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.geometryType用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.objectIdField用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.customParameters用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.effect用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.fieldsIndex用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.url用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.on用法及代碼示例
- JavaScript ArcGIS OGCFeatureLayer.title用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 OGCFeatureLayerView.when。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。