由于某些原因,我的节点服务器无法提供路由/socket.io/socket.io.js,所以我总是会收到404错误。
我尝试编译不同的节点版本(当前版本为0.6.13,该版本也可以在实际运行的服务器上运行)。
从app.js info: socket.io started尝试调用socket.io.js时,我得到并没有错误。
我从本地主机和端口8000尝试,我使用express框架
这是来自app.js的代码:
var express = require('express')
, app = require('express').createServer()
, io = require('socket.io').listen(app, { log: true });
app.listen(8000);
app.configure(function() {
app.use(express.static(__dirname + '/public'));
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
io.sockets.on('connection', function (socket) {
// all other stuff here
相关分类