显示来自 Mongo 数据库的实时数据
Displaying real time data from Mongo database
我一直在考虑如何使用 nodejs/mongodb 制作天气实时 Web 应用程序。
我想在每次添加新文档时显示数据库中的天气数据,我应该使用 socket.io 还是其他什么?
you can use socket.io for that,
as soon as data get inserted you will get a callback and through socket listner you can show or send to client side.
我一直在考虑如何使用 nodejs/mongodb 制作天气实时 Web 应用程序。 我想在每次添加新文档时显示数据库中的天气数据,我应该使用 socket.io 还是其他什么?
you can use socket.io for that, as soon as data get inserted you will get a callback and through socket listner you can show or send to client side.