跳到主要内容

版本:5.X

输入状态

发送输入状态

sendUltraGroupTypingStatus 通知服务端正在输入中。

参数说明

参数类型必填说明
targetIdString接收方的 userId
conversationTypeNumberRongIMLib.ConversationType.ULTRA_GROUP。会话类型,参考 ConversationType
channelIdString接收方的频道 Id

代码示例

const conversationType = RongIMLib.ConversationType.ULTRA_GROUP
const targetId = ' 会话 Id '
const channelId = '<频道ID>'

RongIMLib.sendUltraGroupTypingStatus({ conversationType, targetId, channelId })
.then((res) => {
if (res.code === 0) {
console.log(res.code, res.data)
} else {
console.log(res.code, res.msg)
}
})
.catch((error) => {
console.log(error)
})

监听用户正在输入状态通知

可通过监听 Events.OPERATE_STATUS 事件来捕获用户正在输入状态通知

RongIMLib.addEventListener(RongIMLib.Events.OPERATE_STATUS, (evt) => {
console.log(evt)
})