浏览器找不到客户端的 socket.io.js:
<script src="/socket.io/socket.io.js"></script>
在没有处理程序的情况下创建服务器时:
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs');
app.listen(80);
//without this part:
/*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) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
我不需要也不想要处理函数,因为我在 PHP 中生成的所有内容。有时对 index.html/php 以外的其他文件使用客户端应用程序功能
那么如何让浏览器可以找到socket.io.js呢?