socket.io示例:不工作

时间:2012-08-18 07:26:04

标签: node.js socket.io

我是socket.io的新手,并试图从他们的主页上的示例开始尝试。但是执行后我在控制台中获得的所有内容都是

debug - 提供静态内容/socket.io.js

我的服务器端代码是:

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

    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) {
    console.log("connected");
    socket.emit('news', { hello: 'world' });
    socket.on('my other event', function (data) {
    console.log(data);
    });
    })

我的index.html是这样的:

     var socket = io.connect('document.location.href');

   socket.on('error',function(reason){
  // console.error("Error");


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

          socket.on('message', function (msg) {
                // my msg
                    });
                     });
             </script>

我用Google搜索并无法解决问题。我在使用firefox的ubuntu。

1 个答案:

答案 0 :(得分:2)

如果我没弄错,你的错误就在这里:

'document.location.href'

应该是

document.location.href

我刚刚完成了一个简单的示例应用程序,我将很快编写一个教程: https://github.com/dotcloud/socket.io-on-dotcloud

你可以抓住它(只是克隆它)并愚弄它以便于如何开始使用带有快递3的socket.io。如果你想分享你的话,它甚至可以推进dotCloud应用