服务器端事件(SSE)未到达客户端

时间:2016-10-28 12:19:50

标签: javascript angularjs node.js express server-sent-events

我正在使用MEAN,我正在尝试从服务器端接收事件。为此,我使用EventSource,但它不起作用。

我看到连接是如何打开的,但我没有从服务器收到任何消息。我可以在Node控制台中看到消息是如何发送的,但在客户端则没有(浏览器控制台)。

我有点迷失,因为我正在按照我发现的所有教程,但使用完全相同的代码它只是不起作用。

在客户端,这是我的AngularJS代码:

  var source = new EventSource('/api/payments/listen');

  source.addEventListener('open', function(e) {
    console.log('CONNECTION ESTABLISHED');
  }, false);

  source.addEventListener('message', function (e) {

    $scope.$apply(function () {
      console.log('NOTIFICATION');
      console.log(e.data);
    });

  }, false);

  source.onmessage = function (e) {
    console.log('NOTIFICATION!');
    console.log(e);
  };

  source.addEventListener('error', function(e) {
    if (e.readyState === EventSource.CLOSED) {
      console.log('CONNECTION CLOSED');
    }
  }, false);

服务器端代码:

exports.listen = function (req, res) {

  if (req.headers.accept && req.headers.accept === 'text/event-stream') {

    if ( req.url === '/api/payments/listen' ) {
      sendSSE(req, res);
    }
    else {
     res.writeHead(404);
     res.end();
    }

  }
  else
    res.end();

};

function sendSSE(req, res) {

  res.writeHead(200, {
    'Content-Type': 'text/event-stream',
    'Cache-Control': 'no-cache',
    'Connection': 'keep-alive'
  });

  var id = (new Date()).toLocaleTimeString();

  // Sends a SSE every 5 seconds on a single connection.
  setInterval(function() {
    constructSSE(res, id, data);
  }, 5000);

  constructSSE(res, id, data);
}

function constructSSE(res, id, data) {

  res.write('id: ' + id + '\n');
  res.write('data: ' + JSON.stringify(data) + '\n\n');

}

有什么建议吗?有提示吗?

修改

我不知道造成这个问题的原因,但是我已经使用Simple-SSE工作了,这是一个用于服务器端事件的有用的小库。

现在,它按预期工作。

这里是那些想试一试的人的链接: https://github.com/Lesterpig/simple-sse

谢谢=)

1 个答案:

答案 0 :(得分:2)

希望这对遇到同样问题的人有所帮助。在无法从服务器接收消息之后,尽管我代码中的所有内容似乎都是应该的,但我还是遇到了这个问题。看到这个库帮助我研究了源代码并找到了答案。如果使用的压缩库(例如我在Express应用程序中使用的压缩库),则需要在写入后刷新响应。否则,压缩不会像协议期望的那样发送消息。例如 res.write(“ data:hi \ n \ n”) res.flush()