本文簡要介紹 python 語言中 arcgis.gis.CategorySchemaManager.assign_to_items
的用法。
用法:
assign_to_items(items)
返回:
item_id
的dict
:status
,其中status
表示內容類別是否添加成功。如果status
更新不成功,將提供一條消息來幫助您調試問題。
assign_to_items
函數將組內容類別添加到items
參數中指定的門戶項目(見下文)。要為組中的項目分配類別,您必須是組所有者/管理員。要為項目分配組織內容類別,您必須是項目所有者或具有portal:admin:updateItems
權限的管理員。注意:
每個請求最多可以批量更新 100 個項目。
Parameter
Description
items
必填清單。項目對象的 JSON 數組。每個都使用由類別對象組成的項目 ID 指定。類別由一個數組指定,該數組列出要在項目上更新的所有內容類別,每個類別都有以 /為前綴的完整層次路徑。
每個項目最多可分為 20 個類別。
例子:
# Usage Example >>> gis.content.categories.assign_to_items(items = [{"2678d3002eea4e4a825e3bdf10016e61": { "categories": ["/Categories/Geology", "/Categories/Elevation"]}}, {"c3ad4ed8bcf04d619537cfe252a1760d": { "categories": ["/Categories/Geology", "/Categories/Land cover/Forest/Deciduous Forest"]}}, {"9ced00fdce3e4b20bb4b05155acbe817": { "categories": []}}])
相關用法
- Python ArcGIS CategorySchemaManager.delete用法及代碼示例
- Python ArcGIS CategoryManager.add用法及代碼示例
- Python ArcGIS ContentManager.unshare_items用法及代碼示例
- Python ArcGIS ContentManager.delete_folder用法及代碼示例
- Python ArcGIS ContentManager.replace_service用法及代碼示例
- Python ArcGIS Country.enrich用法及代碼示例
- Python ArcGIS ContentManager.advanced_search用法及代碼示例
- Python ArcGIS CiscoEdgeIntelligence用法及代碼示例
- Python ArcGIS ContentManager.can_delete用法及代碼示例
- Python ArcGIS ContentManager.create_service用法及代碼示例
- Python ArcGIS ContentManager.create_folder用法及代碼示例
- Python ArcGIS ContentManager.share_items用法及代碼示例
- Python ArcGIS Country.subgeographies用法及代碼示例
- Python ArcGIS CreditManager用法及代碼示例
- Python ArcGIS ContentManager.rename_folder用法及代碼示例
- Python ArcGIS ContentManager.clone_items用法及代碼示例
- Python ArcGIS ContentManager.add用法及代碼示例
- Python ArcGIS ContentManager.search用法及代碼示例
- Python ArcGIS ContentManager.bulk_update用法及代碼示例
- Python ArcGIS Country.enrich_variables用法及代碼示例
- Python ArcGIS CertificateManager.delete用法及代碼示例
- Python ArcGIS ContentManager.delete_items用法及代碼示例
- Python ArcGIS CertificateManager.add用法及代碼示例
- Python ArcGIS CertificateManager.get用法及代碼示例
- Python ArcGIS ContentManager.generate用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.CategorySchemaManager.assign_to_items。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。