如何知道Strophe中是否已成功发送聊天消息?
例如
var reply = $msg({
to: id + '@' + chatServerIP,
from: uid + '@' + chatServerIP,
type: 'chat'
}).cnode(Strophe.xmlElement('body', msg));
chatConnection.send(reply.tree());
如何成功发送回复?
答案 0 :(得分:0)
如果您正在寻找的话,您将不会得到任何形式的确认。如果失败,您应该收到错误。还要检查您的服务器是否设置为存储脱机消息。如果收件人不在线,您的邮件可能会在那里。
您可以设置收据以获得确认http://www.xmpp.org/extensions/xep-0184.html。