我基本上有一个Node.js服务器,它充当两个其他服务器之间的中间人。
我想知道是否有可能做这样的事情:
let matchSocket = ioClient.connect('http://localhost:5040');
http.listen(5030, function () {
console.log('Matchmaking server is now running.');
});
matchSocket.on('connect', function () {
});
io.on('connection', function (socket) {
// Send event 'ev001' as a CLIENT
socket.on('ev001', function (data, callback) {
matchSocket.emit('start', {
message: 'message'
});
}
}
这个“服务器”既是服务器又是客户端。鉴于此服务器收到消息'ev001',我想将另一条消息转发到另一台服务器。
所以它变成了:
服务器A - > ev001 - >该服务器(B) - >开始 - >服务器C
你可以在socket的自己的“socket#on()”函数之外调用socket#emit()函数吗?
答案 0 :(得分:0)
是的,这是可能的。
这里是一个独立版本(创建一个在5040上监听的服务器,就像你正在连接的远程服务器,以及5030上的服务器,就像你的"配对服务器" ):
const ioServer = require('socket.io');
const ioClient = require('socket.io-client');
// Your remote server.
ioServer().listen(5040).on('connection', function(socket) {
socket.on('start', function(message) {
console.log('remote server received `start`', message);
});
});
// Connect to the "remote" server.
let matchSocket = ioClient('http://localhost:5040');
// Local server.
ioServer().listen(5030).on('connection', function(socket) {
// Send a message to the remote server when `ev001` is received.
socket.on('ev001', function(message) {
console.log('received `ev001`');
matchSocket.emit('start', { message: 'message' });
});
});
// Connect to the local server and emit the `ev001` message.
ioClient('http://localhost:5030').emit('ev001');