删除会话
删除指定会话
调用 removeConversation 删除指定会话。
const conversationType = RongIMLib.ConversationType.PRIVATE;
const targetId = '接收方的 userId';
RongIMLib.removeConversation({
conversationType,
targetId: targetId,
}).then(res => {
// 删除 指定会话成功
if(res.code === 0){
console.log(res.code)
} else {
console.log(res.code, res.msg)
}
})
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
targetId | String | 是 | 接收方的 userId |
conversationType | Number | 是 | 会话类型,参考 ConversationType。 |