代码拉取完成,页面将自动刷新
/**
* Created by Taller on 17/3/1.
*/
var express = require('express'),
io = require('socket.io');
var app = express();
app.use(express.static(__dirname));
var server = app.listen(8888);
var ws = io.listen(server);
ws.on('connection', function(client){
//客户端连接注册
client.on('join', function(userId){
// 检查是否有重复
if(!checkUserId(userId)){
client.userId = userId; //加入到在线客户端列表中
console.log('join','客户端->'+client.userId+'连接成功');
}
});
// 监听发送消息
client.on('send.message', function(msg){
client.broadcast.emit('send.message',client.userId,msg);
});
// 断开连接时
client.on('disconnect', function(){
if(client.userId){
//client.broadcast.emit('send.message','系统', client.userId + '断开了连接!');
console.log('disconnect:',client.userId + '断开了连接!')
}
})
});
var checkUserId = function(_userId){
for(var k in ws.sockets.sockets){
if(ws.sockets.sockets.hasOwnProperty(k)){
if(ws.sockets.sockets[k] && ws.sockets.sockets[k].userId == _userId){
return true;
}
}
}
return false;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。