跳到主要内容

版本:2.X

删除全部会话

清除本地会话列表

Web 没有本地数据库,不提供清除本地会话列表接口。

清除远端会话列表

提示

conversationTypes 为 Array 类型。可以按类型进行删除,可传递多个,不填则清除所有会话。

API 参考:clearConversations

参数说明

参数类型必填说明最低版本
callbackObject回调对象2.3.2
callback.onSuccessFunction成功回调2.2.0
callback.onErrorFunction失败回调2.2.0
conversationTypesArray清除的会话类型, 不填则清除所有会话2.3.2

conversationTypes 枚举值说明

会话类型说明枚举值
RongIMLib.ConversationType.PRIVATE单聊1
RongIMLib.ConversationType.GROUP群聊3
RongIMLib.ConversationType.CHATROOM聊天室4
RongIMLib.ConversationType.SYSTEM系统6

代码示例

var conversationTypes = [RongIMLib.ConversationType.PRIVATE, RongIMLib.ConversationType.GROUP];
RongIMClient.getInstance().clearConversations({
onSuccess: function(bool) {
console.log('清除会话成功',bool);
},
onError: function(error) {
console.log('清除会话失败', error);
}
}, conversationTypes);