Skip to content

Commit

Permalink
modify
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxiuwen committed Dec 19, 2024
1 parent ea7ffbd commit 1f1eae2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/document/flutter/integration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 集成 SDK

本文介绍如何将环信即时通讯 IM SDK 集成到你的项目
本文介绍如何将环信即时通讯 IM SDK 集成到你的 Flutter 项目中

## 开发环境要求

Expand Down
2 changes: 1 addition & 1 deletion docs/document/ios/integration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 集成 SDK

本文介绍如何将环信即时通讯 IM SDK 集成到你的 Android 项目。
本文介绍如何将环信即时通讯 IM SDK 集成到你的 iOS 项目。

## 开发环境要求

Expand Down
2 changes: 1 addition & 1 deletion docs/document/react-native/integration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 集成 SDK

本文介绍如何将环信即时通讯 IM SDK 集成到你的 RN 项目
本文介绍如何将环信即时通讯 IM SDK 集成到你的 React Native 项目中

## 开发环境需求

Expand Down
10 changes: 4 additions & 6 deletions docs/document/web/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,9 @@ miniCore.contact.getContacts();

#### 与整体导入的接口差别

通过按需导入的 SDK 与通过 [JavaScript](#引入-javascript-sdk)[TavaScript](#引入-typescript-sdk)导入的 SDK 在接口使用方面类似,唯一差别是后者将所有方法都挂载到 `connection` 类, 而使用 miniCore 时,基础的登录登出方法挂载在 miniCore 上,其他功能模块上的方法挂载在相应的模块上。
通过按需导入的 SDK 与通过 [JavaScript](#引入-javascript-sdk)[TavaScript](#引入-typescript-sdk)导入的 SDK 在接口使用方面类似,唯一差别是后者将所有方法都挂载到 `connection` 类, 而使用 miniCore 时,基础的登录登出方法挂载在 miniCore 上,其他功能模块上的方法挂载在相应的模块上。本节以登录/登出、事件监听和发送消息为例进行说明。

本节以登录/登出、事件监听和发送消息为例进行说明。

##### 登录与登出
- 登录与登出

示例代码如下:

Expand All @@ -109,7 +107,7 @@ miniCore.open({
miniCore.close();
```

##### 事件监听
- 事件监听

示例代码如下:

Expand All @@ -121,7 +119,7 @@ miniCore.addEventHandler("handlerId", {
});
```

##### 发送消息
- 发送消息

示例代码如下:

Expand Down

0 comments on commit 1f1eae2

Please sign in to comment.