求解在Express4.X中使用Socket.Io。
发布于 9个月前 作者 779361906 1097 次浏览

按官方:

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

server.listen(80);

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

io.sockets.on('connection', function (socket) {
  socket.emit('news', { hello: 'world' });
  socket.on('my other event', function (data) {
    console.log(data);
  });
}); \n``` 
结果在客户端(chrome)的Console中报错:
Uncaught SyntaxError: Unexpected token <
不知如何解决,求大神解答 
2 回复

能具体点吗?求范例

回到顶部