vue.js中使用IM聊天室功能时,同时监听消息和发送消息,自己发送的消息,并没有收到推送,但是其他的账户都收到了
// JIM发送文本消息
sendChatroomMsg({ state, commit, dispatch }) {
state.JIM.sendChatroomMsg({
'target_rid': '24897613',
'content': '我是凯文16号',
}).onSuccess(function (data) {
console.log('JIM发送文本消息success:' + JSON.stringify(data));
//data.code 返回码
//data.message 描述
//data.id 聊天室 id
}).onFail(function (data) {
console.log('JIM发送文本消息error:' + JSON.stringify(data))
//data.code 返回码
//data.message 描述
});
},
// JIM聊天室消息监听
onRoomMsg({ state, commit }) {
state.JIM.onRoomMsg((data) => {
console.log('获取聊天室消息', JSON.stringify(data))
})
},