Strophe.addHandler只从响应中读取第一个节点是否正确?

时间:2010-05-26 11:37:54

标签: javascript xmpp strophe

我开始学习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>

我缺少什么?这是一种正确的行为吗?我应该添加更多处理程序来获取其他节吗? 谢谢你提前

2 个答案:

答案 0 :(得分:11)

似乎是当调用函数addHandler时,执行处理程序时,堆栈(包含要调用的所有处理程序的数组)将被清空。因此,当调用与处理程序条件匹配的节点时,将清除堆栈,然后将找不到其他节点,因此您必须再次设置处理程序,或者添加您希望调用的处理程序,如下所示:

 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; return false将在返回后删除处理程序。

因此只需添加一行即可修复:

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

答案 1 :(得分:4)

markcial的回答是正确的。

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