From d714091c0ed6ac1ddf88d2487727a16305390f6d Mon Sep 17 00:00:00 2001 From: PaDaBoo Date: Thu, 26 May 2022 22:06:01 +0800 Subject: [PATCH] Fix preferences and storage maxlength desc. Signed-off-by: PaDaBoo --- .../reference/apis/js-apis-data-preferences.md | 14 +++++++------- .../reference/apis/js-apis-data-storage.md | 4 ++-- .../reference/apis/js-apis-system-storage.md | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-preferences.md b/zh-cn/application-dev/reference/apis/js-apis-data-preferences.md index cbddca828b..64a60a4f7f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-preferences.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-preferences.md @@ -19,8 +19,8 @@ import data_preferences from '@ohos.data.preferences'; | 名称 | 参数类型 | 可读 | 可写 | 说明 | | -------- | -------- | -------- | -------- | -------- | -| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,必须小于80字节。 | -| MAX_VALUE_LENGTH | string | 是 | 否 | value的最大长度限制,必须小于8192字节。 | +| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,需小于80字节。 | +| MAX_VALUE_LENGTH | string | 是 | 否 | value的最大长度限制,需小于8192字节。 | ## data_preferences.getPreferences @@ -266,14 +266,14 @@ promise.then((value) => { getAll(callback: AsyncCallback<Object>): void; -返回含有所有键值的JS的Object对象。 +返回含有所有键值的Object对象。 **系统能力:** SystemCapability.DistributedDataManager.Preferences.Core **参数:** | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | - | callback | AsyncCallback<Object> | 是 | 回调函数。 | + | callback | AsyncCallback<Object> | 是 | 回调函数。返回含有所有键值的Object对象。 | **示例:** ```ts @@ -293,19 +293,19 @@ preferences.get.getAll(function (err, value) { getAll(): Promise<Object> -返回含有所有键值的JS的Object对象。 +返回含有所有键值的Object对象。 **系统能力:** SystemCapability.DistributedDataManager.Preferences.Core **返回值:** | 类型 | 说明 | | -------- | -------- | - | Promise<Object> | Promise实例,用于异步获取结果。 | + | Promise<Object> | Promise对象。返回含有所有键值的Object对象。 | **示例:** ```ts let promise = preferences.getAll() -promise.then((value) => {、 +promise.then((value) => { let keys = Object.keys(value) console.info('getAll keys = ' + keys) console.info("getAll object = " + JSON.stringify(value)) diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-storage.md b/zh-cn/application-dev/reference/apis/js-apis-data-storage.md index 2d52feb92f..bb5408c97d 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-storage.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-storage.md @@ -22,8 +22,8 @@ import dataStorage from '@ohos.data.storage'; | 名称 | 参数类型 | 可读 | 可写 | 说明 | | -------- | -------- | -------- | -------- | -------- | -| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,必须小于80字节。 | -| MAX_VALUE_LENGTH | string | 是 | 否 | value的最大长度限制,必须小于8192字节。 | +| MAX_KEY_LENGTH | string | 是 | 否 | key的最大长度限制,需小于80字节。 | +| MAX_VALUE_LENGTH | string | 是 | 否 | value的最大长度限制,需小于8192字节。 | ## dataStorage.getStorageSync diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-storage.md b/zh-cn/application-dev/reference/apis/js-apis-system-storage.md index bb562c2708..ee590ae07a 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-system-storage.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-storage.md @@ -68,7 +68,7 @@ set(Object): void | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | | key | string | 是 | 要修改的存储值的索引。 | -| value | string | 是 | 新值。必须小于128字节。 | +| value | string | 是 | 新值。长度需小于128字节。 | | success | Function | 否 | 接口调用成功的回调函数。 | | fail | Function | 否 | 接口调用失败的回调函数,data为错误信息,code为错误码。 | | complete | Function | 否 | 接口调用结束的回调函数。 | -- GitLab