Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有三个具有相同应用程序的 Android 设备,但我需要这三个设备同时启动该应用程序。
我也有一个服务器,应用程序与这个服务器交换数据(用 NodeJS 开发)。
我认为所有设备都可以连接到服务器并等待响应。但我不知道如何使用 Node.js 来实现。我在 Node 中使用了集群,但它不起作用,因为我不知道如何同步所有这 3 个集群。
我怎样才能做到这一点?另一个想法?
谢谢你。
好吧,在 node.js 中使用通用事件很容易实现。创建一些特殊事件,并保持请求没有响应,直到事件被触发,当收到第三个请求时显然会发生什么。node.js 在这方面非常强大。