0

我正在使用命名空间来区分我的 socket.io 聊天应用程序的版本,并且我遇到了“无法在浏览器中显示错误”的问题。

我计划不断更新我在基本 socket.io 教程中制作的聊天应用程序,并且我希望能够随时启动它的任何版本。我将通过使用命名空间来做到这一点。当我在浏览器中的 myserverlocation/v0.0.1 位置启动我的应用程序以访问我的应用程序的 0.0.1 版本时,我收到一条错误消息,指出无法获取“/v0.0.1”。

这是我的服务器代码:

var app = require('express')(),
    server = require('http').Server(app),
    io = require('socket.io').listen(server),
    chat = io.of('/v0.0.1');

server.listen(80);

// routing
app.get('/', function (req, res) {
    res.sendfile(__dirname + '/index.html');
});

// usernames which are currently connected to the chat
var usernames = {};

chat.on('connection', function (socket) {

    // when the client emits 'sendchat', this listens and executes
    socket.on('sendchat', function (data) {
        // we tell the client to execute 'updatechat' with 2 parameters
        io.sockets.emit('updatechat', socket.username, data);
    });

    // when the client emits 'adduser', this listens and executes
    socket.on('adduser', function(username) {
        // we store the username in the socket session for this client
        socket.username = username;
        // add the client's username to the global list
        usernames[username] = username;
        // echo to client they've connected
        socket.emit('updatechat', 'SERVER', 'you have connected');
        // echo globally (all clients) that a person has connected
        socket.broadcast.emit('updatechat', 'SERVER', username + ' has connected');
        // update the list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
    });

    // when the user disconnects.. perform this
    socket.on('disconnect', function() {
        // remove the username from global usernames list
        delete usernames[socket.username];
        // update list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
        // echo globally that this client has left
        socket.broadcast.emit('updatechat', 'SERVER', socket.username + ' has disconnected');
    });
});

这是我的客户代码:

<script src="/socket.io/socket.io.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
    var socket = io.connect('myserverlocation');

    var chat = socket.of('/v0.0.1');

    // on connection to server, ask for user's name with an anonymous callback
    chat.on('connect', function(){
        // call the server-side function 'adduser' and send one parameter (value of prompt)
        chat.emit('adduser', prompt("What's your name?"));
    });

    // listener, whenever the server emits 'updatechat', this updates the chat body
    chat.on('updatechat', function(username, data) {
        $('#conversation').append('<b>' + username + ':</b> ' + data + '<br>');
    });

    // listener, whenever the server emits 'updateusers', this updates the username list
    chat.on('updateusers', function(data) {
        $('#users').empty();
        $.each(data, function(key, value) {
            $('#users').append('<div>' + key + '</div>');
        });
    });

    // on load of page
    $(function(){
        // when the client clicks SEND
        $('#datasend').click( function() {
            var message = $('#data').val();
            $('#data').val('');
            // tell server to execute 'sendchat' and send along one parameter
            chat.emit('sendchat', message);
        });

        // when the client hits ENTER on their keyboard
        $('#data').keypress(function(e) {
            if(e.which == 13) {
                $(this).blur();
                $('#datasend').focus().click();
            }
        });
    });

</script>
<div style="float:left;width:100px;border-right:1px solid black;height:300px;padding:10px;overflow:scroll-y;">
    <b>USERS</b>
    <div id="users"></div>
</div>
<div style="float:left;width:300px;height:250px;overflow:scroll-y;padding:10px;">
    <div id="conversation"></div>
    <input id="data" style="width:200px;" />
    <input type="button" id="datasend" value="send" />
</div>

我的聊天应用程序在 myserverlocation/ 不使用命名空间也能正常工作。我无法弄清楚为什么我不断收到此错误。经过一番调查,我认为我对 io.of() 的使用不正确,但我似乎无法解决问题。我不确定我的问题是出在服务器代码、客户端代码还是两者兼而有之。

编辑:经过更多调查,我认为我的问题在于以下代码段(尽管我可能会弄错):

app.get('/', function (req, res) {
        res.sendfile(__dirname + '/index.html');
});

Edit2:问题实际上出在上面的代码段中。我应该将整个 /Chat 目录作为静态内容发送,而不是使用 res.sendfile() 发送一个文件。当stackoverflow允许我时,我将正式回答我自己的问题(我必须等待8小时才能回答我自己的问题)。

4

1 回答 1

0

我设法找到了我的问题所在。问题出在以下代码部分:

app.get('/', function (req, res) {
        res.sendfile(__dirname + '/index.html');
});

当我应该将整个 /Chat 目录作为静态内容发送时,我在连接到我的服务器时发送了一个特定文件。这样,我可以选择我想要启动的聊天应用程序的版本。我设法通过更改服务器代码中的几行代码来做到这一点:

var express = require('express'),
    app = express(),
    server = require('http').createServer(app),
    io = require('socket.io').listen(server);

server.listen(80);

// Chat directory
app.use(express.static('/home/david/Chat'));
于 2013-07-16T16:54:20.317 回答