输入状态
发送输入状态
sendUltraGroupTypingStatus 通知服务端正在输入中。
参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
targetId | String | 是 | 接收方的 userId |
conversationType | Number | 是 | RongIMLib.ConversationType.ULTRA_GROUP 。会话类型,参考 ConversationType。 |
channelId | String | 否 | 接收方的频道 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)
})