我是Node.js和Socket.io的新手。我已经构建了一个非常基本的Web服务器,但是在使用它时,我无法加载socket.io客户端文件(我得到了404)。
我正在尝试使用此客户端代码:
<script src="/socket.io/socket.io.js"></script>
我的理解是Node应该选择并解决它?它在一个更简单的Web服务器示例上。
未解析的我的Web服务器示例如下:
var server = http.createServer(function (request, response) {
console.log('request starting...');
var filePath = '.' + request.url;
if (filePath == './')
filePath = './index.html';
var extname = path.extname(filePath);
var contentType = 'text/html';
switch (extname) {
case '.js':
contentType = 'text/javascript';
break;
case '.css':
contentType = 'text/css';
break;
}
path.exists(filePath, function(exists) {
if (exists) {
fs.readFile(filePath, function(error, content) {
if (error) {
response.writeHead(500);
response.end();
}
else {
response.writeHead(200, { 'Content-Type': contentType });
response.end(content, 'utf-8');
}
});
}
else {
response.writeHead(404);
response.end();
}
});
我解决的Web服务器代码如下:
app.listen(8080);
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);
});
}
有人可以建议使用第一个Web服务器示例在客户端上没有提供socket.io文件的原因吗?
最好的问候,本。
答案 0 :(得分:11)
您可能在另一个端口上运行Socket.IO,因此请按以下格式包含该文件:
服务器:端口/ socket.io / socket.io.js