我有一个电子应用程序,其中不同的客户端使用node-ipc
.
只要客户端首先连接到服务器,回答该特定客户端就没有问题。根据我在服务器上的文档:
NodeIpc.serveNet(
function () {
NodeIpc.server.on(
'Client.message',
function (data, socket) {
NodeIpc.log('got a message from', (data.id), (data.message));
NodeIpc.server.emit(
socket,
'ServerData',
{
message: 'have some initial cofiguration data'
}
);
);
NodeIpc.server.start();
}
在我的客户上:
NodeIPC.connectToNet(
'world',
function(){
NodeIPC.of.world.on(
'connect',
function(){
NodeIPC.log('## connected to world ##', NodeIPC.config.delay);
NodeIPC.of.world.emit(
'Client.message',
{
id : UniqueClientID,
message : 'Some information about myself'
}
);
});
});
这很好用,但我不知道稍后如何将一些额外的信息推送给特定的客户。试
NodeIpc.server.of['UniqueClientID'].emit(
'additional Data',
{
message: 'some more configuration'
}
)
});
和
NodeIpc.server.emit(
UniqueClientID,
'additional Data',
{
message: 'some more configuration'
});
不工作。有谁知道如何向给定的客户发送消息?(当然,总是有可能广播该消息并让客户决定它是否适合他,但我更愿意直接与客户交谈)