我有一个直接的问题:可以在 socket.io-client 中使用 socket.io io.sockets.emit()
中的方法来广播消息吗?
这是我的代码以及想要做的事情:
var ioc = require('socket.io-client');
var s = ioc.connect("http://localhost:8000/", {reconnection: true});
s.on('connect', function () {
//...
}
//I want here out side of the <connect event> to send a message with socket.io-client
答案 0 :(得分:1)
所以,谢谢你们,来自另一个地方的问题,我像个男人一样把它固定在我自己身上。
var ioc = require('socket.io-client');
var s = ioc.connect("http://localhost:8000/", {reconnection: true});
s.on('connect', function () {
...........
}
s.emit('msg','message')