我正在生成这样的消息
$msg({to: 'user', from: 'me', type: 'chat'}).c("body").t('some data');
生成:
<message to='user' from='me' type='chat' xmlns='jabber:client'>
<body>some data</body>
</message>
但我需要这个:
<message to='user' from='me' type='chat' xmlns='jabber:client'>
<body><![CDATA[some data]]></body>
</message>
有strophejs
东西还是我需要自己生成?甚至可以将 CDATA 发送到 XMPP 吗?