vue.js中使用IM聊天室功能时,同时监听消息和发送消息,自己发送的消息,并没有收到推送,但是其他的账户都收到了

用户2059347
2020-07-15 10:54 90 1
// 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))
            })
        },

1个回答

热门排序
  • 极光叶凡
    2020-07-16 02:10

    正常发送消息,你自己也是收不到消息的。您这个监听发送消息是什么意思?

gptbots-widget