2012-05-16 95 views
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> 

什麼是錯的代碼?

回答

5

我相信你直接在瀏覽器中打開的index.html文件,是這樣嗎?

隨着文件://協議沒有原點設在XMLHttpRequest的,所以瀏覽器會引發的安全異常,如果服務器沒有設置訪問控制允許來源頭使CORS

導航到的http://本地主機:8080/相反,在代碼中指定的處理程序應該呈現index.html頁面正確

+0

是的,我是直接從瀏覽器中運行它。那麼運行客戶端的正確方式是什麼? – michalskuza

+0

您在瀏覽器中打開index.html文件或您導航到http://本地主機:8080在瀏覽器?如果你還沒有,嘗試第二種方式 – BFil

+0

現在,它的工作。謝謝。 – michalskuza

相關問題