From 816f7e2d4b3792e4c29d063ca48679259f738625 Mon Sep 17 00:00:00 2001 From: zengyawen Date: Tue, 15 Mar 2022 03:43:09 +0000 Subject: [PATCH] =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7=E4=BF=AE=E6=94=B9+s?= =?UTF-8?q?yscap=E6=94=B9=E9=80=A0=20Signed-off-by:=20zengyawen=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apis/js-apis-system-parameter.md | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) 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 6016c59263..a12d1c92a8 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 @@ -1,5 +1,9 @@ # 系统属性 +> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** +> - 本模块首批接口从API version 6开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 +> - 此接口为系统接口,三方应用不支持调用。 + ## 导入模块 ``` @@ -7,17 +11,14 @@ import parameter from '@ohos.systemParameter' ``` -## 权限列表 - -无 - - ## parameter.getSync getSync(key: string, def?: string) 获取系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -49,6 +50,8 @@ get(key: string, callback: AsyncCallback<string>) 获取系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -78,6 +81,8 @@ get(key: string, def: string, callback: AsyncCallback<string>) 获取系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -109,6 +114,8 @@ get(key: string, def?: string) 获取系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -144,6 +151,8 @@ setSync(key: string, value: string) 设置系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -168,6 +177,8 @@ set(key: string, value: string, callback: AsyncCallback<void>) 设置系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | @@ -198,6 +209,8 @@ set(key: string, def?: string) 设置系统属性Key对应的值。 +**系统能力:** SystemCapability.Startup.SysInfo + **参数:** | 参数名 | 类型 | 必填 | 说明 | -- GitLab