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


Python ArcGIS ContentManager.bulk_update用法及代碼示例


本文簡要介紹 python 語言中 arcgis.gis.ContentManager.bulk_update 的用法。

用法:

bulk_update(itemids, properties)

返回:

結果列表

bulk_update 方法更新項目屬性的集合。

注意:

bulk_update 目前僅適用於內容類別。

Parameter

Description

itemids

字符串或項目的必需列表。要更新的項目的集合。

properties

必需的字典。要更新的項目屬性。

例子:

# Usage Example
>>> itemsids = gis.content.search("owner: TestUser12399")
>>> properties = {'categories' : ["clothes","formal_wear/socks"]}
>>> gis.content.bulk_update(itemids, properties)
[{'results' : [{'itemid' : 'id', 'success' : "True/False" }]}]

相關用法


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