营养不良 MUC 示例
有谁有 Strope muc 扩展中 join、changenick 等函数调用的示例代码吗?
我尝试自己这样做,不知道如何调用扩展函数,并将插件添加到js中,是否添加
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁有 Strope muc 扩展中 join、changenick 等函数调用的示例代码吗?
我尝试自己这样做,不知道如何调用扩展函数,并将插件添加到js中,是否添加
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您需要在我们的 html 文件中包含 strope.muc.js,在建立 Strope 连接后,您可以使用 conn.muc.foobarMethod() 调用 muc 方法,其中 conn 是已建立的 Strope 连接,foobarMethod 是您要使用的方法我想打电话。
不要尝试自己构建所有内容(从你的问题来看,我认为你没有相关的专业知识),而是尝试使用已经构建的 js xmpp 客户端,例如 Candy 也是基于 Strope.js 构建的。
You need to include the strophe.muc.js in our html file and after you established a Strophe connection, you can call the muc methods with conn.muc.foobarMethod() where conn is the established Strophe connection and foobarMethod is the method you'd like to call.
Instead of trying to build everything on your own (and from your question I assume that you don't have the relevant know-how), try an already built js xmpp client like Candy which is also built upon Strophe.js.
Candy 是一个基于 Strope 的成熟 MUC 客户端。代码非常优秀并且易于阅读。
我建议下载它并研究代码:
http://candy-chat.github.com/candy/
亚历克斯
Candy is a full blown MUC client based on Strophe. The code is excellent and easy to read.
I suggest to download it and study the code:
http://candy-chat.github.com/candy/
Alex