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


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


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

用法:

can_delete(item)

返回:

字典 - 有關成功調用 can_delete 和失敗調用 can_delete 的示例,請參見下表。

can_delete方法指示Item是否可以被擦除。當 can_delete 返回的響應為 true 時,可以安全地刪除該項目。當返回的響應為 false 時,由於依賴性或保護設置,無法刪除該項目。

Parameter

Description

item

必需Item。要擦除的Item

例子:

# Usage Example
>>> gis.content.can_delete("9311d21a9a2047d19c0faaebd6f2cca6")

Status

Response

success

{ “itemId”:“e03f626be86946f997c29d6dfc7a9666”,“success”:真 }

failure

{ “itemId”: “a34c2e6711494e62b3b8d7452d4d6235”, “success”: false, “reason”: { “message”: “無法刪除項目。刪除保護已打開。” } }

相關用法


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