0

有一个发送一些 json 数据的 api。nodejs 服务器获取这个 json 数据并每 5 秒用 websocket 发送客户端。如果连接在 clent 连接时它工作但当客户端断开连接时,它不会停止。

编码

io.on('connection', function(client) {  
        var loop=setInterval(()=>{
            console.log('Client connected...');

            fetch('https://www.foo.com/api/v2/searchAssets')
            .then(res => res.json())
            .then(json => 
            {client.emit('news'{json});console.log(json)}),5000);

        })});

io.on('disconnetion',function(){
                clearInterval(loop);
                console.log("disconnected");
            })

或者

除了 websocket 之外,您还有什么其他建议可以将此 json 数据发送到客户端吗?

提前感谢您的支持

4

1 回答 1

2

您的问题是范围问题。声明loopvar 时,它是事件回调的本地变量,在on connection事件中不存在on disconnect。根据如何处理断开连接的文档,您可以将断开连接处理程序移动到连接处理程序中,如下所示:

io.on('connection', function(client) {
  // Start the interval
  var loop = setInterval(()=>{
    console.log('Client connected...');

    fetch('https://www.foo.com/api/v2/searchAssets')
      .then(res => res.json())
      .then(json => {
        client.emit('news'{json});console.log(json)
      } ,5000);
  });

  // Handles disconnection inside the on connection event
  // Note this is using `client.on`, not `io.on`, and that
  // your original code was missing the "c" in "disconnect"
  client.on('disconnect', () => {
    clearInterval(loop);
    console.log("disconnected");
  });
});

但我不推荐这种架构,因为流数据独立于客户端。数据可以一次获取并流式传输给所有人。您可以这样做:

var loop

// The function startStreaming starts streaming data to all the users
function startStreaming() {
  loop = setInterval(() => {
    fetch('https://www.foo.com/api/v2/searchAssets')
      .then(res => res.json())
      .then(json => {
        // The emit function of io is used to broadcast a message to
        // all the connected users
        io.emit('news', {json});
        console.log(json);
      } ,5000);
  });
}

// The function stopStreaming stops streaming data to all the users
function stopStreaming() {
  clearInterval(loop);
}

io.on('connection',function() {
  console.log("Client connected");

  // On connection we check if this is the first client to connect
  // If it is, the interval is started
  if (io.sockets.clients().length === 1) {
    startStreaming();
  }
});

io.on('disconnetion',function() {
  console.log("disconnected");

  // On disconnection we check the number of connected users
  // If there is none, the interval is stopped
  if (io.sockets.clients().length === 0) {
    stopStreaming();
  }
});
于 2018-10-21T13:52:52.870 回答