Twilio聊天文件

时间:2019-07-02 08:52:17

标签: c# twilio twilio-api

js文件:twilio-chat

方法:notifyMemberJoined和notifyMemberLeft位于

问题:关闭聊天标签时,用户没有通话,我不知道为什么

根据官方网站的情况,可以在通知输入时正常调用它,但是不发送刚刚发送的两者。

function initChannelEvents() {

        tc.currentChannel.on('messageAdded', tc.addMessageToList);
        tc.currentChannel.on('typingStarted', showTypingStarted);
        tc.currentChannel.on('typingEnded', hideTypingStarted);
        tc.currentChannel.on('memberJoined', notifyMemberJoined);
        tc.currentChannel.on('memberLeft', notifyMemberLeft);
        $inputText.prop('disabled', false).focus();

        utils.logInfo('Channel ' + tc.channelName + ' joined successfully!');
    }

    function notifyMemberJoined(member) {
        notify(member.identity + ' joined the channel');
    }

    function notifyMemberLeft(member) {
        notify(member.identity + ' left the channel');
    }

用户不提示退出频道

0 个答案:

没有答案