Nodejs无法向在线特定的soket

时间:2016-08-07 19:21:30

标签: node.js sockets socket.io

我正在尝试实现基于socket.io的简单推送通知,在我的简单代码中练习我怎样才能编写简单的代码,在我的代码中我无法向连接的用户发送消息,当使用记录时进入系统我使用socket.io上的密钥存储redis,但是在向用户发送消息时,我从redis获取密钥作为用户名,并从redis存储socket.io值并且我正在尝试发送,我得到相同的socket.io值但消息不发送给用户

客户方:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>
        Document
    </title>
    </meta>
    <script src="https://cdn.socket.io/socket.io-1.4.5.js"></script>
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('#login').click(function () {
                socket.emit('login', {username: 'a', password: 'a'});
            });

            $('#mesage').click(function () {
                socket.emit('message', 'a');
            });
        });
    </script>
    <script>
        var socket = new io.connect('http://192.168.1.35:3000', {
            port      : 3000,
            transports: ['websocket']
        });

        socket.on('connect', function () {
            console.log('connected!');
        });

        socket.on('login', function (message) {
            console.log(message);
        });

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

        socket.on('hello,', function (message) {
            console.log(message);
        });

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

    </script>
</head>
<body>
<h3 id="login">
    login
</h3>

<h3 id="mesage">
    mesage
</h3>
</body>
</html>

服务器端:

var socket      = require('socket.io'),
    express     = require('express'),
    app         = express(),
    server      = require('http').createServer(app),
    io          = socket.listen(server),
    port        = process.env.PORT || 3000,
    redis       = require("redis"),
    redisClient = redis.createClient();

socket.on('connection', function (socket) {
    socket.on('login', function (data) {
        login(data.username, data.password, function (success, value) {
            if (success) {
                redisClient.exists(data.username, function (err, doesExist) {
                    if (err) return;
                    if (!doesExist) {
                        redisClient.set(data.username, socket.id);
                    }
                    else {
                        redisClient.del(data.username);
                        redisClient.set(data.username, socket.id);
                    }
                    log.info("SOCKET ID: " + socket.id);
                });
                socket.emit('login', {result: success, id: socket.id});
            } else {
                socket.emit('login', {result: false, id: socket.id});
            }
        });
    });
    socket.on('message', function (username) {
        redisClient.get(username, function (err, socketId) {
            if (err)
                socket.emit('message', err);
            io.to(socketid).emit('message', 'for your eyes only');
        });
    });

});

当我点击login时,我得到了这个结果:

 Object { result=true,  id="/#A5sR-Xo-Owo97NvRAAAB"}

当我点击消息时,我得到了这个结果:

user not connected /#A5sR-Xo-Owo97NvRAAAB

两个socket.id都相同,但客户端没有收到任何消息,服务器将此消息作为user not connected

返回

1 个答案:

答案 0 :(得分:0)

看起来你在这段代码中有一个拼写错误:

redisClient.get(username, function (err, socketId) {
    if (err)
        socket.emit('message', err);
    io.to(socketid).emit('message', 'for your eyes only');
});

您的回调收到socketId作为第二个参数,但在发送邮件时使用socketid(小写)。

最好在发送错误消息时退出函数:

if (err) return socket.emit('message', err);

或:

if (err) {
    socket.emit('message', err);
    return;
}

否则您可能会出现意外错误。

希望这有帮助。