当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS promiseUtils.resolve用法及代码示例


基本信息

以下是所在类或对象的基本信息。

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

ESM: import * as promiseUtils from "@arcgis/core/core/promiseUtils";

对象: esri/core/promiseUtils

自从:用于 JavaScript 4.2 的 ArcGIS API

用法说明

promiseUtils.resolve函数(或属性)的定义如下:

resolve (value) {Promise}


已弃用 从 4.19 版开始。请改用本机 Promise.resolve() 方法。

用于创建将使用提供的值解决的 Promise 的便捷实用方法。

参数:

类型说明
value *
可选的

用于解决结果承诺的值。

返回:

类型 说明
Promise 使用提供的值解决的承诺。

例子:

// createGraphics will return a Promise that
// resolves to graphics array
function createGraphics() {
  let graphics = geoJson.features.map(function(feature, i) {
     return new Graphic({
       geometry: new Point({
         x: feature.geometry.coordinates[0],
         y: feature.geometry.coordinates[1]
       }),

       attributes: {
         ObjectID: i,
         title: feature.properties.title
       }
     });
  });

  return promiseUtils.resolve(graphics);
}

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 promiseUtils.resolve。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。