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


JavaScript ArcGIS RelationshipQuery.outFields用法及代码示例


基本信息

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

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

ESM: import RelationshipQuery from "@arcgis/core/rest/support/RelationshipQuery";

类: esri/rest/support/RelationshipQuery

继承: RelationshipQuery > Accessor

自从:用于 JavaScript 4.20 的 ArcGIS API

用法说明

RelationshipQuery.outFields函数(或属性)的定义如下:

outFields String[]


要包含在 FeatureSet 中的属性字段。字段必须存在于Map图层中。您必须列出实际的字段名称而不是别名。但是,您可以在显示结果时使用别名。

指定输出字段时,应将字段限制为仅希望在查询或结果中使用的字段。您包含的字段越少,响应速度就越快。

每个查询都必须有权访问图层的 Shape 和 ObjectId 字段。但是,您的字段列表不需要包括这两个字段。

例子:

query.outFields = [ "NAME", "STATE_ABBR", "POP04" ];

相关用法


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