From 4b46f85159f17346eecac9dea14cd835b914ba51 Mon Sep 17 00:00:00 2001 From: chen_jie Date: Tue, 23 Aug 2022 18:03:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9md=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chen_jie --- .../reference/apis/js-apis-device-info.md | 1 + .../reference/apis/js-apis-system-parameter.md | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-device-info.md b/zh-cn/application-dev/reference/apis/js-apis-device-info.md index c6b94fabd8..1e65a7f35f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-device-info.md +++ b/zh-cn/application-dev/reference/apis/js-apis-device-info.md @@ -12,6 +12,7 @@ import deviceInfo from '@ohos.deviceInfo' ## 属性 **系统能力**:以下各项对应的系统能力均为SystemCapability.Startup.SysInfo。 + **权限**:以下各项所需要的权限有所不同,详见下表。 | 名称 | 参数类型 | 可读 | 可写 | 描述 | diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-parameter.md b/zh-cn/application-dev/reference/apis/js-apis-system-parameter.md index 148570c628..2529125ef2 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-system-parameter.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-parameter.md @@ -17,7 +17,7 @@ getSync(key: string, def?: string): string 获取系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** @@ -50,7 +50,7 @@ get(key: string, callback: AsyncCallback<string>): void 获取系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** @@ -81,7 +81,7 @@ get(key: string, def: string, callback: AsyncCallback<string>): void 获取系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** @@ -114,7 +114,7 @@ get(key: string, def?: string): Promise<string> 获取系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** @@ -151,7 +151,7 @@ setSync(key: string, value: string): void 设置系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** @@ -177,7 +177,7 @@ set(key: string, value: string, callback: AsyncCallback<void>): void 设置系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** @@ -209,7 +209,7 @@ set(key: string, value: string): Promise<void> 设置系统属性Key对应的值。 -**系统能力:** SystemCapability.Startup.SysInfo +**系统能力:** SystemCapability.Startup.SystemInfo **参数:** -- GitLab