本文简要介绍 python 语言中 arcgis.apps.hub.sites.Page.update
的用法。
用法:
update(page_properties=None, slug=None)
返回:
指示成功 (True) 或失败 (False) 的布尔值。
更新页面。
注意:
对于page_properties,仅传入要更新的属性的参数。所有其他属性将保持不变。例如,如果您只想更新页面的说明,则只需在 page_properties 中提供说明参数。
Parameter
Description
page_properties
必需的字典。有关键和值,请参见下面的 URL。
slug
可选字符串。页面的 slug 或子域。
要查找参数 page_properties 的适用选项列表 -https://esri.github.io/arcgis-python-api/apidoc/html/arcgis.gis.toc.html#arcgis.gis.Item.update
例子:
# USAGE EXAMPLE: Update a page successfully page1 = mySite.pages.get('itemId12345') page1.update(page_properties={'description':'Description for page.'}) >> True
相关用法
- Python ArcGIS Page.delete用法及代码示例
- Python ArcGIS PageManager.link用法及代码示例
- Python ArcGIS PageManager.clone用法及代码示例
- Python ArcGIS PageManager.add用法及代码示例
- Python ArcGIS PageManager.unlink用法及代码示例
- Python ArcGIS PageManager.get用法及代码示例
- Python ArcGIS PortalLicense.update用法及代码示例
- Python ArcGIS PortalDataStore.register用法及代码示例
- Python ArcGIS Polygon.coordinates用法及代码示例
- Python ArcGIS Project用法及代码示例
- Python ArcGIS ProfileManager.create用法及代码示例
- Python ArcGIS PortalDataStore.unregister用法及代码示例
- Python ArcGIS ProfileManager.get用法及代码示例
- Python ArcGIS Point3DLayer用法及代码示例
- Python ArcGIS PortalDataStore.servers用法及代码示例
- Python ArcGIS PortalDataStore用法及代码示例
- Python ArcGIS PortalDataStore.describe用法及代码示例
- Python ArcGIS PortalDataStore.layers用法及代码示例
- Python ArcGIS ProfileManager.save_as用法及代码示例
- Python ArcGIS PortalDataStore.validate用法及代码示例
- Python ArcGIS ProfileManager.delete用法及代码示例
- Python ArcGIS PortalDataStore.publish用法及代码示例
- Python ArcGIS PortalDataStore.delete_layers用法及代码示例
- Python ArcGIS PortalAdminManager.mode用法及代码示例
- Python ArcGIS Point.coordinates用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.apps.hub.sites.Page.update。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。