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 0be6dd6a6be3ff052fff8fa3c064095bacad7f4c..7ee2688165334cd7b050dbf3d02da5bffa6425da 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 | 否 | 待设置的系统属性值。 | **返回值:**