Questa soluzione, basata sulla risposta di Jujuleder funziona. Apparentemente in socket.io 1.0, è "forceNew" invece di "force new connection" - entrambi funzionano però.
Server:
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendfile('s.html');
});
io.on('connection', function(socket){
console.log('a user connected: ' + socket.id);
socket.on('disconnect', function(){
console.log(socket.name + ' has disconnected from the chat.' + socket.id);
});
socket.on('join', function (name) {
socket.name = name;
console.log(socket.name + ' joined the chat.');
});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
client (s.html):
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>button{width: 100px;}input{width: 300px;}</style>
</head>
<body>
<ul id="messages"></ul>
<button id="disconnect">disconnect</button>
<button id="connect">connect</button>
<script src="/socket.io/socket.io.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
var socket = io.connect('http://localhost:3000');
$('#disconnect').click(function(){
socket.disconnect();
});
$('#connect').click(function(){
// socket.socket.reconnect();
// socket = io.connect('http://localhost:3000',{'force new connection':true });
socket = io.connect('http://localhost:3000',{'forceNew':true });
socket.on('connect', function(msg){
socket.emit('join', prompt('your name?'));
});
});
socket.on('connect', function(msg){
socket.emit('join', prompt('your name?'));
});
socket.on("disconnect", function(){
console.log("client disconnected from server");
});
</script>
</body>
</html>
fonte
2014-07-07 16:28:23
Il vostro esempio funziona per me. – vinayr
funziona una volta. ma funziona molte volte? Non fa per me. Stavo indovinando le modifiche di socket.id e quindi la disconnessione non è più associata a socket.id della nuova connessione. Solo un'ipotesi :-) –