Hst.room.chat 直播聊天组件
1.发送消息
Hst.room.chat.Send(value)
2.监听消息发送状态
Hst.eventsBus.on('Chat.Reply', function(data){
// 成功或者失败
})
- 消息格式说明
字段 | 说明 |
---|---|
code | 0:发送成功,16:禁止聊天 |
message | 过滤后的消息 |
3.接收聊天消息
Hst.eventsBus.on('Chat.Msg', function (msg) {
console.log(msg.text)
})
- 消息格式说明
字段 | 说明 |
---|---|
nickname | 用户昵称 |
role | 用户角色: 1. 普通用户 2. 主播 3. 嘉宾 |
text | 消息内容 |
4.获取当前用户昵称
Hst.user.getNickname()