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


JavaScript ArcGIS PortalItem.addResource用法及代码示例


基本信息

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

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

ESM: import PortalItem from "@arcgis/core/portal/PortalItem";

类: esri/portal/PortalItem

继承: PortalItem > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

PortalItem.addResource函数(或属性)的定义如下:

addResource (resource, content, options) {Promise}


自从:ArcGIS 适用于 JavaScript 4.16 的 API

将新的 resource 添加到门户项目。

参数:

规格:
类型说明

要添加到门户项目的资源。

content Blob

资源内容。

options Object
可选的

具有以下属性的对象。

规格:
access

String

可选的
默认值:"inherit"

指示对资源的访问级别。默认值为"inherit",这会导致资源具有与拥有项目相同的访问级别。

可能的值"inherit"|"private"

signal

AbortSignal

可选的

可用于中止异步任务的信号对象。当发出中止信号时,返回的 Promise 将被名为 AbortErrorError 拒绝。另请参阅AbortController,了解有关如何构建可用于传递中止信号的控制器的更多信息。

返回:

类型 说明
Promise 解决后,返回 PortalItemResource

例子:

// The following snippet assumes you have an existing portal item instance
// that you are allowed to modify

// An example of an object that we would like to store as a resource
const definition = { type: "world", description: "A world definition" };

const resource = new PortalItemResource({ path: "definitions/world.json" });

// Resource content is always passed as a blob. Define a blob that contains our definition
// in JSON encoding
const content = new Blob([JSON.stringify(definition)], { type: "application/json" });

portalItem.addResource(resource, content)
  .then(function () {
    console.log("Successfully added resource", resource.url);
  })
  .catch(function (error) {
    console.error("Failed to add resource", error);
  });

相关用法


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