From 1ae2216bad523e3b9f807c90e6db4d9f7878b44d Mon Sep 17 00:00:00 2001 From: zengyawen Date: Wed, 25 May 2022 07:53:46 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-system-parameter.md. Signed-off-by: zengyawen --- .../reference/apis/js-apis-system-parameter.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 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 0be6dd6a6b..7ee2688165 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 @@ -171,7 +171,7 @@ try { ``` -## parameter.set(key: string, value: string, callback: AsyncCallback<void>) +## parameter.set set(key: string, value: string, callback: AsyncCallback<void>): void @@ -183,8 +183,8 @@ set(key: string, value: string, callback: AsyncCallback<void>): void | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| key | string | 是 | 待查询的系统属性Key。 | -| def | string | 是 | 默认值。 | +| key | string | 是 | 待设置的系统属性Key。 | +| value | string | 是 | 待设置的系统属性值。 | | callback | AsyncCallback<void> | 是 | 回调函数。 | **示例:** @@ -203,9 +203,9 @@ try { ``` -## parameter.set(key: string, def?: string) +## parameter.set -set(key: string, def?: string): Promise<string> +set(key: string, value: string): Promise<string> 设置系统属性Key对应的值。 @@ -215,8 +215,8 @@ set(key: string, def?: string): Promise<string> | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| key | string | 是 | 待查询的系统属性Key。 | -| def | string | 否 | 默认值。 | +| key | string | 是 | 待待设置的系统属性Key。 | +| value| string | 否 | 待设置的系统属性值。 | **返回值:** -- GitLab