未验证 提交 c2323b9c 编写于 作者: C cheng_jinsong 提交者: Gitee

update zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md.

Signed-off-by: Ncheng_jinsong <chengjinsong2@huawei.com>
Signed-off-by: Ncheng_jinsong <chengjinsong2@huawei.com>
上级 083c79a9
......@@ -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&lt;string&gt;): void
......@@ -87,7 +85,6 @@ try {
}
```
## systemparameter.get
get(key: string, def: string, callback: AsyncCallback&lt;string&gt;): void
......@@ -120,7 +117,6 @@ try {
}
```
## systemparameter.get
get(key: string, def?: string): Promise&lt;string&gt;
......@@ -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&lt;void&gt;): void
......@@ -215,7 +209,6 @@ try {
}
```
## systemparameter.set
set(key: string, value: string): Promise&lt;void&gt;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册