我正在使用Strophe.js通过websockets连接到XMPP服务器。这是当连接的用户收到消息时得到的示例响应:

<message xmlns='jabber:client' xml:lang='en' to='[email protected]/6665193359253278721998' from='[email protected]/Mac' type='chat' id='purple42fccc5c'>
  <archived by='[email protected]' id='1557026681122740' xmlns='urn:xmpp:mam:tmp'/>
  <stanza-id by='[email protected]' id='1557026681122740' xmlns='urn:xmpp:sid:0'/>
  <active xmlns='http://jabber.org/protocol/chatstates'/>
  <body>
    1
  </body>
</message>


检查了文档,但是我找不到关于该主题的任何有用信息。 Strophe是否有内置方法从不同类型的消息中提取我需要的数据?还是我需要其他东西?

最佳答案

创建连接后,您需要定义挂钩以接收消息并能够与之交互:

connection.addHandler(onMessage, null, 'message', 'chat');
connection.addHandler(onMessage, null, 'message', 'groupchat');


然后,您只需要定义onMessage函数。

onMessge: function(stanza) {
  $stanza = $(stanza);

  messageId = $stanza.attr('id') || null;
  to = $stanza.attr('to');
  from = $stanza.attr('from').toLowerCase();
  barejid = Strophe.getBareJidFromJid(from);

  type = $stanza.attr('type');
  bodies = $stanza.find('body');
  body = bodies.length ? Strophe.xmlunescape(Strophe.getText(bodies[0])) : '';
....

}


希望能有所帮助。

10-06 12:23