像 Twitter 一样自动更新页面
我想在我的网站上添加页面自动更新。它是用 Python 和 jquery 编写的,所以我想尝试 Twisted (或另一个 COMET 的东西)。问题是我不知道我到底需要什么以及我必须阅读哪些文档。
I wanna add page auto-update on my web site. It's written in Python and jquery, so I wanna try Twisted (or another COMET thing). The problem is about I don't know what exactly I need and what docs I have to read.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Twisted for COMET 的两个选项:
这两个都有您必须阅读和完成的教程,这些教程不适合这个小答案区域,但您应该能够找到它们相当容易。祝你好运!
Two options for using Twisted for COMET:
Both of these have tutorials you'll have to read and work through, which won't fit into this small answer area, but you should be able to find them fairly easily. Good luck!
使用带有 setInterval 的 ajax 调用,将 JQuery 的 AJAX 的成功函数上的新内容(如果有)添加到相应的 div。
use an ajax call with a setInterval, add new content - if any - on the success function of JQuery's AJAX to the according div.