我正在使用XMPP客户端,并且Strophe(javascript版本)发送/接收的消息有问题。
问题是包含“特殊”字符的消息。例如,如果我发送:
外部客户端(即iChat)将显示
Strophe客户端根本不显示任何内容。
如果我将同一条消息从iChat发送到strophe客户端,它将正确显示。
这是我能想到的最基本的示例代码:
<html>
<head>
<script type='text/javascript' src='strophe.min.js'></script>
<script type='text/javascript'>
function onConnect(status) {
if (status == Strophe.Status.CONNECTED) {
var message = $msg({to: CONTACT_JID, from: JID, type: 'chat'}).c('body').t("I'm here."); ;
connection.send(message.tree());
}
}
var connection = new Strophe.Connection('http://bosh.metajack.im:5280/xmpp-httpbind');
connection.connect(JID, PASS, onConnect);
</script>
</head>
<body></body>
</html>
在此先感谢您的帮助。
编辑:
出站,看来Strophe是双重编码。当我打字
它正在发送
<body>I&apos;m</body>
入站,似乎无法正确处理CDATA。任何指导或想法表示赞赏。
最佳答案
好的,根据
https://github.com/metajack/strophejs/issues/54
https://github.com/metajack/strophejs/pull/59
您应该删除文本节点的转义。打开strophe.js文件的非最小版本,并添加注释行#846
//text = Strophe.xmlescape(text);