Socket.io: client.on 响应其他客户端的消息
Socket.io: client.on responds to messages for other clients
所以我遇到了 Socket.io
的问题:
所以在服务器中,我像这样向客户端发送消息:
请注意,下面的片段只是对我正在做的事情的简化
import { Server, Socket } from 'socket.io';
const app = express();
const http = require('http');
const server = http.createServer(app);
const io = new Server(server, { cors: { origin: '*' } });
io.on('connection', socket => {
socket.on('message', (data) => {
// ... some computation here
socket.emit('other message', computeddata); // Should only send to the
sender
});
});
我在客户端收到的是这样的:
socket.on('connect', () => {
socket.emit('message');
});
socket.on('other message', (data) => {
console.log(data);
});
当服务器向套接字发送消息时,它应该只发送到特定的套接字,对吗?
好吧,所有连接的套接字都可以使用它。
如何才能让邮件只发送给发件人?
我对 socket.io 有点陌生,
提前致谢!
我设法解决了这个问题,有一条 io.emit
行我以某种方式错过了 3 次,这破坏了其余的发射。
天呐....
所以我遇到了 Socket.io
的问题:
所以在服务器中,我像这样向客户端发送消息:
请注意,下面的片段只是对我正在做的事情的简化
import { Server, Socket } from 'socket.io';
const app = express();
const http = require('http');
const server = http.createServer(app);
const io = new Server(server, { cors: { origin: '*' } });
io.on('connection', socket => {
socket.on('message', (data) => {
// ... some computation here
socket.emit('other message', computeddata); // Should only send to the
sender
});
});
我在客户端收到的是这样的:
socket.on('connect', () => {
socket.emit('message');
});
socket.on('other message', (data) => {
console.log(data);
});
当服务器向套接字发送消息时,它应该只发送到特定的套接字,对吗? 好吧,所有连接的套接字都可以使用它。
如何才能让邮件只发送给发件人?
我对 socket.io 有点陌生, 提前致谢!
我设法解决了这个问题,有一条 io.emit
行我以某种方式错过了 3 次,这破坏了其余的发射。
天呐....