From 14015f5257fe6c09cae4c52edac005de0175fd24 Mon Sep 17 00:00:00 2001 From: weixin_47469434 Date: Thu, 18 Sep 2025 18:54:50 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20[Issues:=20#ICYPWX]=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A00.77=20Parse-SDK-JS=E4=B8=89=E6=96=B9=E5=BA=93?= =?UTF-8?q?=E6=8C=87=E5=AF=BC=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: weixin_47469434 --- zh-cn/Parse-SDK-JS.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/zh-cn/Parse-SDK-JS.md b/zh-cn/Parse-SDK-JS.md index 26681cac..9b96675a 100644 --- a/zh-cn/Parse-SDK-JS.md +++ b/zh-cn/Parse-SDK-JS.md @@ -35,13 +35,19 @@ Parse JS SDK 兼容以下版本的 Parse Server,Parse Server服务端搭建可 #### **npm** ```bash +#0.72 npm install parse@5.3.0 +#0.77 +npm install parse@6.1.1 ``` #### **yarn** ```bash +#0.72 yarn add parse@5.3.0 +#0.77 +yarn add parse@6.1.1 ``` @@ -226,7 +232,7 @@ export default ParseExample; | Name | Description | Type | Required | Platform | HarmonyOS Support | | --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | -------- | ----------- | ----------------- | -| initialize | 初始化 Parse SDK,设置应用程序的 ID 和密钥。通常在应用程序的入口处调用。 | (applicationId: string, javaScriptKey?: string, masterKey?: string) => void | yes | iOS/Android | yes | +| initialize | 初始化 Parse SDK,设置应用程序的 ID 和密钥。通常在应用程序的入口处调用。 | (applicationId: string, javaScriptKey: string, masterKey?: string, maintenanceKey6.1.1+ ?: string) => void | yes | iOS/Android | yes | | setAsyncStorage | 设置 Parse SDK 使用的 AsyncStorage 实例,用于存储会话令牌等信息。 | (storage:AsyncStorage) => void | yes | iOS/Android | yes | **Parse.ACL**:访问权限对象。 -- Gitee