带有node.js的服务器发送事件/事件源(快速)

时间:2015-07-29 12:25:09

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

我正在尝试使用SSE将JSON数据发送到浏览器,但我似乎无法做到正确而且我不知道为什么。

服务器端如下所示:

var express     = require("express"),
    app         = express(),
    bodyParser  = require('body-parser');

app.use(express.static(__dirname + '/'));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());

var testdata = "This is my message";

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

    setInterval(function(){
      console.log('writing ' + testdata);
      res.write('data: {"msg": '+ testdata +'}\n\n');
    }, 1000);
});

/*
app.post('/message', function(req, res) {
  testdata = req.body;
});
*/

var port = 8080;
app.listen(port, function() {
  console.log("Running at Port " + port);
});

正如你所看到的,我已经评论过帖子,但最终我想将testdata用作JSON本身:

res.write('data: ' + testdata + '\n\n');

客户端看起来像这样:

<script>
    var source = new EventSource('/connect');
    source.onmessage = function(e) {
        var jsonData = JSON.parse(e.data);
        alert("My message: " + jsonData.msg);
    };
</script>

我看到控制台日志,但不是警报。

1 个答案:

答案 0 :(得分:4)

尝试发送正确的JSON(输出中未引用testdata):

res.write('data: {"msg": "'+ testdata +'"}\n\n');

但最好是:

res.write('data: ' + JSON.stringify({ msg : testdata }) + '\n\n');