我可以通过 Node.js 向客户端发送多个响应吗?

发布于 2024-12-10 13:51:18 字数 218 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

对风讲故事 2024-12-17 13:51:18

您可以使用服务器发送事件。
这是一个示例:

https://github.com/chovy/nodejs-stream (完整源代码示例)

UI

var source = new EventSource('stream');

source.addEventListener('a_server_sent_event', function(e) {
   var data = JSON.parse(e.data);
   //do something with data
});

节点

if ( uri == '/stream' ) {
  //setup http server response handling and get some data from another service
  http.get(options, function(resp){
    resp.on('data', function(chunk){
      res.write("event: a_server_sent_event\n");
      res.write("data: "+chunk.toString()+"\n\n");
    });
  });
}

You could use Server Sent Events.
Here's an example:

https://github.com/chovy/nodejs-stream (full source code example)

UI

var source = new EventSource('stream');

source.addEventListener('a_server_sent_event', function(e) {
   var data = JSON.parse(e.data);
   //do something with data
});

Node

if ( uri == '/stream' ) {
  //setup http server response handling and get some data from another service
  http.get(options, function(resp){
    resp.on('data', function(chunk){
      res.write("event: a_server_sent_event\n");
      res.write("data: "+chunk.toString()+"\n\n");
    });
  });
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文