2
我想在Chrome中(19.0.1048.46)工作socket.io主頁獲得的第一個例子,但我得到的錯誤:Socket.IO - 谷歌瀏覽器無法加載的XMLHttpRequest
"XMLHttpRequest cannot load http:// localhost:8080/socket.io/1/?t=1337156198176. Origin null is not allowed by Access-Control-Allow-Origin."
服務器代碼:
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
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);
});
}
io.sockets.on('connection', function (socket) {
socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});
});
客戶端代碼:
<script src="socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost:8080');
socket.on('news', function (data) {
console.log(data);
socket.emit('my other event', { my: 'data' });
});
</script>
什麼是錯的代碼?
是的,我是直接從瀏覽器中運行它。那麼運行客戶端的正確方式是什麼? – michalskuza
您在瀏覽器中打開index.html文件或您導航到http://本地主機:8080在瀏覽器?如果你還沒有,嘗試第二種方式 – BFil
現在,它的工作。謝謝。 – michalskuza