admin管理员组文章数量:1343914
Is there a way to get a sockets namespace? I've tried various things but cannot get it to work. Given a socket object I would like to be able to know what namespace it belongs to. Thank you very much.
for example
nsp = io.of('/' + venue_code).on('connection', function(socket) {
socket.namespace = nsp
if (typeof servers[nsp.name] == 'undefined') {
servers[nsp.name] = socket.id
winston.debug("Server " + socket.id + " connected to " + nsp.name)
socket.room = "servers"
socket.join(socket.room)
} else {
socket.room = "clients"
socket.join(socket.room)
winston.debug("Client " + socket.id + " connected to " + nsp.name)
}
Is there a way to get a sockets namespace? I've tried various things but cannot get it to work. Given a socket object I would like to be able to know what namespace it belongs to. Thank you very much.
for example
nsp = io.of('/' + venue_code).on('connection', function(socket) {
socket.namespace = nsp
if (typeof servers[nsp.name] == 'undefined') {
servers[nsp.name] = socket.id
winston.debug("Server " + socket.id + " connected to " + nsp.name)
socket.room = "servers"
socket.join(socket.room)
} else {
socket.room = "clients"
socket.join(socket.room)
winston.debug("Client " + socket.id + " connected to " + nsp.name)
}
Share
Improve this question
asked Jul 24, 2015 at 2:25
patrick_corriganpatrick_corrigan
89911 silver badges25 bronze badges
1 Answer
Reset to default 11It is just socket.nsp
, which gives the entire Namespace
object. Use socket.nsp.name
to get the actual name.
nsp = io.of('/' + venue_code).on('connection', function(socket) {
winston.debug(socket.nsp)
}
Note that if you attach this same handler to the root namespace, you'll get the root namespace -- those middlewares are run before the correct namespace is attached.
本文标签: javascriptSocketio get the namespace a socket belongs toStack Overflow
版权声明:本文标题:javascript - Socket.io get the namespace a socket belongs to - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743738298a2530416.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论