で切断イベントsocket.io
を取得する方法を誰か教えてもらえますか?xhr-polling
node.js
この例は動作しませんxhr-polling
が、動作しwebsockets
ます..
/* Basics */
var express = require('express'),
app = express(),
server = require('http').createServer(app),
io = require('socket.io').listen(server);
server.listen(1337, null);
io.set('transports', ['xhr-polling']); // If I change it to websockets it works!
// routing
app.get('/', function (req, res) {
res.sendfile("index.html");
app.use(express.static(__dirname));
});
var online_clients = 0;
io.sockets.on('connection', function (socket) {
socket.on('disconnect', function() {
console.log("SOMEONE LEFT");
});
});
では、切断イベントを取得する方法はxhr-pooling
?