当命名空间我收到浏览器中显示的“无法获取GET错误”时

时间:2013-07-12 15:48:54

标签: javascript html node.js socket.io

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

我计划不断更新我在基本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个小时来回答我自己的问题)时,我将正式回答我自己的问题。

1 个答案:

答案 0 :(得分: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'));