附加功能strophe后,名单不会在线显示

时间:2016-08-04 12:23:57

标签: javascript jquery xmpp openfire strophe

我已经从openfire连接strophe并在chatbox中显示名单它工作正常。我也可以在呼叫附加功能时显示名单但不显示在线状态。

conn.attach(jid, sid, rid, function () {
    XMPPChat.connection = conn;
    XMPPChat.connection.resume();
    jQuery(document).trigger('connected');
});

是已定义连接功能

jQuery(document).bind('connected', function () {    
    var iq = $iq({type: 'get'}).c('query', {xmlns: 'jabber:iq:roster'});
    XMPPChat.connection.sendIQ(iq, XMPPChat.on_roster);
});

0 个答案:

没有答案