我有一个node.js-app在端口8080上的同一台机器上运行,具有不同的通道。我的jQuery-site和我的.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-server:
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-object。什么是最好的方法?只需使用emmit和通道对io-object进行eval,或者我可以将对象或json-thing传递给node.js-server吗?
我的目标是,发送一个事件驱动的消息。当一个新行插入我的MSQL-DB时,应该将一条消息发送到通道。
答案 0 :(得分:1)
您可以做的一件事就是在有详细信息的更新时ping Node.js服务器。您可以通过直接http / https执行此操作。
基本上,当.NET更新数据库时,它可以使用您要推送给用户的数据包快速发送到node.js端点的POST。