Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

socket客户端接收不到服务器端传来的数据?

$
0
0

服务器端

io.on('connection', function(socket){
	socket.emit('news', { hello: 'world' });
  });

客户端

socket.on('news', function (data) {
  console.log('news data',data);
});

并没有报错😭,写法有问题吗?我查了好多资料都没解决,求救!


Viewing all articles
Browse latest Browse all 14821

Trending Articles