我需要自动更新的应用程序,就像 Gmail 收件箱、日历 Facebook 等
我已经提交了保留日历的申请。现在我需要,如果管理员更改了他的日历,并且它对用户产生了影响,并且如果该用户当前正在查看该日历,那么管理员所做的任何更改都应该反映给用户,而无需刷新页面, 就像当电子邮件发送到 Gmail 时,无需刷新,我们就可以看到收件箱标记为未读......
那么要实现这一点,我应该做什么?
我使用 J-query 作为用户界面,使用 Python 作为后端?
I have made application in which I have kept calendar. Now I need that if admin changes his calendar and if it is affected to user and if that user is currently looking that calendar then whatever changes Admin has done that should reflect to user without refreshing the page,
just like when email comes to Gmail then without refreshing we can see the inbox marked as unread...
So to implement that what should I do?
I am using J-query for user interface and Python as back-end?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
转到 $.ajax()
go to $.ajax()
Python Comet Server 该线程包含有关 Python 彗星服务器的信息,这将为您提供实时信息我想你指的是浏览器数据推送。我相信 gmail 通过使用 iframe hack 和使用一些 javascript ajax 调用的 setinterval 检查来做到这一点。
Python Comet Server this thread contains info on a comet like server for python, this would give you the real time browser data push I think you are referring to. I believe gmail does it by using an iframe hack and a setinterval check using some javascript ajax call.