我可以通过 Node.js 向客户端发送多个响应吗?
我正在使用 Node.js
并且我想向客户端发回多个响应。因此客户端将发送 AJAX POST 请求并返回一些数据。但服务器必须继续进行一些处理,完成后,我希望它发回更多数据。
我知道这是 Socket.io
的一个很好的候选者,但我还没有真正看到如何在 MVC 框架上下文中使用 socket.io
的示例。它会进入控制器吗?
I'm using Node.js
and I want to send back multiple responses to the client. So the client will send an AJAX POST request and get back some data. But the server has to continue to do some processing and when that's done, I want it to send more data back.
I know this is a good candidate for Socket.io
, but I haven't really seen an example of how to use socket.io
in the context of an MVC framework. Does it go in the controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用服务器发送事件。
这是一个示例:
https://github.com/chovy/nodejs-stream (完整源代码示例)
UI
节点
You could use Server Sent Events.
Here's an example:
https://github.com/chovy/nodejs-stream (full source code example)
UI
Node