3

我有一个 node.js-app 在端口 8080 上的同一台机器上运行,具有不同的通道。我的 jQuery 站点和我的 .NET 端点之间的通信完美无缺。

我的网站:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
            <title>WebSocket-Test</title>
    </head>
    <body>
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script type="text/javascript" src="/socket.io/socket.io.js"></script>
        <script type="text/javascript">
            $(function() {
                $('button').click(function() {
                    var socket = io.connect('http://localhost:4000');
                    socket.on($('#username').val(), function (data) {
                        console.log(data);
                        socket.emit('my other event', { my: data });
                    });
                });
            });
        </script>
        <input type="text" id="username" />
        <button>connect</button>
    </body>
</html>

我的 node.js 服务器:

var app = require('http').createServer(handler)
  , io = require('socket.io').listen(app)
  , fs = require('fs')

app.listen(4000);
var count = 0;

function handler (req, res) {
  fs.readFile(__dirname + '/index.html',
  function (err, data) {
    if (err) {
      res.writeHead(500);
      return res.end('Error loading index.html');
    }

    res.writeHead(200);
    res.end(data);
  });
}

io.sockets.on('connection', function (socket) {
    setInterval(function () {
        socket.emit('daniel', { hello: 'Waited two seconds!'});
    }, 2000);
    socket.emit('daniel', { hello: 'world' });  
    socket.emit('stefan', { hello: 'world2' });  
    socket.on('my other event', function (data) {
        console.log(data);
    });
});

我的问题是,如何通过 node.js 从我的 .NET 后端发送消息?

加载页面后,我确实有一个 window.io 对象。最好的方法是什么?只需使用 emmit 和通道对 io-object 进行 eval,或者我可以将对象或 json-thing 传递给我的 node.js-server?

我的目标是发送事件驱动的消息。当新行插入我的 MSQL-DB 时,应该向通道发送一条消息。

4

1 回答 1

1

您可以做的一件事是在有详细信息更新时简单地 ping Node.js 服务器。您可以通过直接的 http/https 执行此操作。

基本上,当 .NET 更新数据库时,它可以快速 POST 到 node.js 端点,其中包含您想要向用户推出的数据包。

于 2013-08-01T02:27:07.477 回答