Rails 3 在新记录后用 JS 更新视图
我使用 tweetstream gem
获取推文,并为每条推文创建一条记录。 index.html.erb
列出所有已保存的推文。但我必须手动重新加载才能看到新的。
如何开始使用 JS/jQuery 代码来监视数据库中的记录并在每次保存新记录时更新视图/附加新推文?
提前致谢
I am fetching tweets using the tweetstream gem
and I create a record for every single tweet. index.html.erb
lists all the saved tweets. But I have to reload manually to see the new ones.
How do I get startet with a JS/jQuery code that should watch the records in my database and update the view/append the new tweet everytime a new record is saved?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://www.w3schools.com/js/js_timing.asp
我不确定如果这就是您正在寻找的内容,但您可以使用 JavaScript 超时函数在加载的页面上循环检查更新,请参阅上面的链接以获取示例。
http://www.w3schools.com/js/js_timing.asp
I am not sure if this is what you are looking for, but you could use a javascript time out function to loop on a loaded page checking for updates, see above link for the examples.