Socket.IO TypeError:无法读取属性' emit'未定义的

时间:2015-09-18 19:42:41

标签: javascript node.js sockets socket.io-1.0

我为聊天客户端写了以下代码到客户端(client1到服务器服务器到client2),但是我收到错误:

socket上缺少错误处理程序。 TypeError:无法读取属性' emit'未定义的

这是我的服务器端代码。

var app = require('http').createServer(handler)
  , io = require('socket.io').listen(app)
  , fs = require('fs')

app.listen(3000);

var users = {};
var reciverusers = {};

function handler (req, res) {
  fs.readFile(__dirname + '/index.html',
  function (err, data) {
    if (err) {
      res.writeHead(500);
      return res.end('Error loading index.html');
    }

    res.writeHead(200);
    res.end(data);
  });
}
io.sockets.on('connection', function (socket) {
  socket.on("users",function(data){

    users[data.uid]=data.uid;
    users[data.uname] =data.uname;
    //console.log(data);
    console.log("User Id is "+users[data.uid]);
    console.log("Username is "+users[data.uname]);
    console.log(users[data.uname] + " Joined with this Id: " +users[data.uid]); 
    //console.log("cnsle users : "+users[0]);
  });

  socket.on("sendmsg", function(msgdata){
    console.log(msgdata);
    reciverusers[msgdata.recipent]=msgdata.recipent;
    reciverusers[msgdata.message]=msgdata.message;
    console.log("reciver id "+reciverusers[msgdata.recipent]);
    for(var name in users) {
        if(users[name] === reciverusers[msgdata.recipent]) {
            console.log("yes user exits");
            console.log("Sending : "+ reciverusers[msgdata.message]);
            io.sockets.emit("rmsg",reciverusers[msgdata.message]);
            io.sockets.connected[reciverusers[msgdata.recipent]].emit("rmsg", {'msg':reciverusers[msgdata.message]});
            break;
        }else{
            console.log("No user not exists");
        }
    }
  });

客户端代码

var username,uid;
 var socket = io.connect('http://localhost');

 $(".client_name").on("submit", function(){
    // Tell the server about it
    var username = $("#cleintname").val();
    var userid = $("#cliendID").val();

    socket.emit("users", {"uname": username,"uid":userid});

    $(".client_name").remove();
    $("#Clientnm").text(username);
    return false;

  });

 var chat_form = $(".chatform");
 chat_form.on("submit", function(){
   // Send the message to the server
   var reciver_id = $("#reciver_id").val();
   var msg = $("#message").val();
   socket.emit("sendmsg", {"recipent":reciver_id, "message":msg});

   // Empty the form
  $("#message").val('');
  return false;
 });

 // Whenever we receieve a message, append it to the <ul>
 socket.on("rmsg", function(data){
  $("#messages").append(data);
 });

它与此命令相符: node app.js:编译 [确定]

当我进入或登录时:其工作正常 [确定]

当我向其他客户发送消息时: [不正常] 失败 它给了我以下错误:

用户ID为1

用户名是测试

test加入此Id:1

用户ID为2

用户名是test2

test2加入此Id:2

这里工作正常,从这里我试图向user2 / client2发送消息给我错误

{食物:&#39; 1&#39;,消息:&#39; ssfsfs&#39; }

reciver id 1

是用户退出

发送:ssfsfs

socket上缺少错误处理程序。

TypeError:无法读取属性&#39; emit&#39;未定义的

我尽力使用socket.io lib新版本来解释我的代码

1 个答案:

答案 0 :(得分:0)

您已将应用绑定到第3000个端口,并设置socket.io以使用侦听3000的http模块。

所以你要改变客户端:

var socket = io.connect('http://localhost');

到此:

var socket = io.connect('http://localhost:3000');

或只是:

var socket = io.connect();



也来自您的代码:

users[data.uid]=data.uid;
users[data.uname] =data.uname;

我在这里看不到任何逻辑:) 为什么不保持这样:

users[data.uid] = {uid: data.uid, uname: data.uname}
sockets[socket.id] = socket;
if(!users[data.uid].sockets) {
  users[data.uid].sockets = [];
}
users[data.uid].sockets.push(socket);