5

我开始学习 strophe 库的使用,当我使用 addHandler 解析响应时,它似乎只读取 xml 响应的第一个节点,所以当我收到这样的 xml 时:

<body xmlns='http://jabber.org/protocol/httpbind'>
 <presence xmlns='jabber:client' from='test2@localhost' to='test2@localhost' type='avaliable' id='5593:sendIQ'>
  <status/>
 </presence>
 <presence xmlns='jabber:client' from='test@localhost' to='test2@localhost' xml:lang='en'>
  <status />     
 </presence>
 <iq xmlns='jabber:client' from='test2@localhost' to='test2@localhost' type='result'>
  <query xmlns='jabber:iq:roster'>
   <item subscription='both' name='test' jid='test@localhost'>
    <group>test group</group>
   </item>
  </query>
 </iq>
</body>

使用这样的处理程序 testHandler :

connection.addHandler(testHandler,null,"presence");
function testHandler(stanza){
  console.log(stanza);
}

它只记录:

<presence xmlns='jabber:client' from='test2@localhost' to='test2@localhost' type='avaliable' id='5593:sendIQ'>
 <status/>
</presence>

我错过了什么?这是正确的行为吗?我应该添加更多处理程序来获取其他节吗?感谢提前

4

2 回答 2

11

似乎是当调用函数 addHandler 时,堆栈(包含要调用的所有处理程序的数组)在处理程序执行时被清空。所以当匹配handler条件的节点被调用时,堆栈被清空,然后其他节点就找不到了,所以你必须重新设置handler,或者添加你希望被调用的handler,如下所示:

 connection.addHandler(testHandler,null,"presence");
 connection.addHandler(testHandler,null,"presence");
 connection.addHandler(testHandler,null,"presence");

或者:

 connection.addHandler(testHandler,null,"presence");
 function testHandler(stanza){
    console.log(stanza);
    connection.addHandler(testHandler,null,"presence");
 }

可能不是最好的解决方案,但我会一直使用,直到有人给我一个更好的解决方案,无论如何我发布这个解决方法来提示我正在处理的代码流。

编辑

阅读http://code.stanziq.com/strophe/strophejs/doc/1.0.1/files/core-js.html#Strophe.Connection.addHandler中的文档我发现了这一行:

如果要再次调用处理程序,则应返回 true;返回 false 将在处理程序返回后删除它。

所以它将通过仅添加一行来修复:

 connection.addHandler(testHandler,null,"presence");
 function testHandler(stanza){
    console.log(stanza);
    return true;
 }
于 2010-05-26T13:47:30.020 回答
4

markcial 的回答是正确的。

在处理程序函数中返回 true,因此 Strophe 不会删除处理程序。

于 2010-09-07T03:19:57.693 回答