2

我在 Facebook 聊天系统上与 Strophe 合作,到目前为止,登录和发送消息都有效。

到目前为止,我可以在 Google Chrome Inspector 控制台中看到已注册传入消息,但是,我目前没有注册任何传入消息处理程序。

我试过了

conn.addHandler(AjaxIM.client.incoming, null, "chat");

-- and --

conn.addHandler(AjaxIM.client.incoming, null, "message", null, null, null);

但这似乎没有任何作用。

任何帮助是极大的赞赏!

4

1 回答 1

4

采用:

conn.addHandler(handler, null, 'message', 'chat');

请参阅精美的文档;)

于 2012-04-16T10:14:07.990 回答