From c2323b9c0845d527ae4c9b446b5e10942287eaef Mon Sep 17 00:00:00 2001 From: cheng_jinsong Date: Thu, 13 Oct 2022 06:03:22 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md. Signed-off-by: cheng_jinsong Signed-off-by: cheng_jinsong --- .../reference/apis/js-apis-system-parameterV9.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md b/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md index 1d96c11a4b..1bdcfb8d5c 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md @@ -3,12 +3,11 @@ 系统参数(SystemParameter)是为各系统服务提供的简单易用的键值对访问接口,各个系统服务可以定义系统参数来描述该服务的状态信息,或者通过系统参数来改变系统服务的行为。其基本操作原语为get和set,通过get可以查询系统参数的值,通过set可以修改系统参数的值。 详细的系统参数设计原理及定义可参考 [系统参数](../../../device-dev/subsystems/subsys-boot-init-sysparam.md)。 + > ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** > - 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 > - 由于系统参数都是各个系统服务的内部信息和控制参数,每个系统参数都有各自不同的DAC和MAC访问控制权限,三方应用不能使用此类接口。 - - ## 导入模块 ```ts @@ -56,7 +55,6 @@ try { } ``` - ## systemparameter.get get(key: string, callback: AsyncCallback<string>): void @@ -87,7 +85,6 @@ try { } ``` - ## systemparameter.get get(key: string, def: string, callback: AsyncCallback<string>): void @@ -120,7 +117,6 @@ try { } ``` - ## systemparameter.get get(key: string, def?: string): Promise<string> @@ -157,7 +153,6 @@ try { } ``` - ## systemparameter.setSync setSync(key: string, value: string): void @@ -183,7 +178,6 @@ try { } ``` - ## systemparameter.set set(key: string, value: string, callback: AsyncCallback<void>): void @@ -215,7 +209,6 @@ try { } ``` - ## systemparameter.set set(key: string, value: string): Promise<void> -- GitLab