如何在不刷新页面的情况下获取页面上的新内容

发布于 2024-11-30 07:32:11 字数 188 浏览 1 评论 0原文

如果您查看 Foursquares 网页:https://foursquare.com/

他们会自动输入新的提要,而无需刷新页。我正在构建一个后端,我们可以在其中查看特定于用户的提要。我怎样才能获得与 Foursquare 使用的相同效果?

If you look at Foursquares webpage : https://foursquare.com/

They have the new feeds automatically coming in without refreshing the page. I am building a backend where we can look at user speciefic feeds. How can i do get the same effect that Foursquare is using?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仅冇旳回忆 2024-12-07 07:32:11

它是 setInterval 及其 ajax 调用的混合体。

setInterval(1000, function() {
    // Make ajax call here to get more information and append new elements to the DOM.
});

It's a mix of setInterval and their ajax call.

setInterval(1000, function() {
    // Make ajax call here to get more information and append new elements to the DOM.
});
酸甜透明夹心 2024-12-07 07:32:11

下面是对 AJAX 的很好的介绍:

http://www.w3schools.com/ajax/default。 ASP

Here is a pretty good introduction to AJAX:

http://www.w3schools.com/ajax/default.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文