如何在浏览器中显示实时数据?

发布于 2024-09-18 16:53:40 字数 283 浏览 3 评论 0原文

我想建立一个显示实时更新数据的网站(在本例中为内联网)。我有服务器和实时数据,这是我不太了解的软件。我对编程并不陌生,但对网络技术不太熟悉。

我还有哪些选择?我更喜欢开源,并且最好是灵活且透明的东西。

编辑: 对于实时数据,我指的是刷新速度比我的显示器更快的数据。 我希望数据“直接”更新,而不是在浏览器端保留任何特定的刷新率。数据将以常规表格格式显示,我不需要任何花哨的图形。请注意,现阶段我没有使用任何特定的脚本框架。这就是这个问题的目的,找出我应该使用哪一个。

I want to setup a website (intranet in this particular case) that shows realtime updating data. I have the server and the realtime data, it's the software I know less about. I am no stranger to programming, but I am less familiar with web technologies.

Which alternatives do I have? I would prefer open source, and preferably something nimble and transparent as well.

EDIT:
With realtime data I mean a data that refreshes quicker than my monitor does.
I would prefer the data to update 'straight through' and not keep any specific refresh rate on the browser side. The data is to be shown in a regular tabular format, I don't need any fancy graphics. Please note at this stage I am not using any particular scripting framework. That is the purpose of this question, to figure out which one I should use.

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

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

发布评论

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

评论(2

天冷不及心凉 2024-09-25 16:53:40

我不知道您使用什么脚本语言和数据源,但这会给您一个方向。

实时显示数据更新使用 AJAX

I don't know what scripting language and data source your using but this will give you a direction.

Display data updates in real-time with AJAX

憧憬巴黎街头的黎明 2024-09-25 16:53:40

假设数据是使用 AJAX 检索的,您将采用“轮询消费者”模式”。简而言之,您发出数据请求,服务器将阻止该请求,直到有新数据可用(或您的请求超时)。当您收到数据时,您会再次轮询。如果您遇到错误(超时、服务器故障等),那么您可能需要实施一些 back -关闭策略,然后重试。

'希望这有帮助。

On the presumption that the data is retrieved using AJAX, you're after a "polling consumer pattern". In a nutshell, you make a request for your data and it will be blocked by the server until new data is available (or your request times out). When you receive your data, you poll for it again. In the event that you get an error (timeout, server failure etc.) then you might want to implement some back-off policy before trying again.

'hope that this helps.

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