5

在我的index.html (HTML/Javascript)我有:

$(document).ready(function(){
        namespace = '/test'; 

        var socket = io.connect('http://' + document.domain + ':' + location.port + namespace);

        socket.on('connect', function() {
            socket.emit('join', {room: 'venue_1'}); 
        });       


        socket.on('my response', function(msg) {
            $('#log').append('<br>Received #' + ': ' + msg.data);
        });       
    });

在我的Server我有:

@socketio.on('connect', namespace='/test')
def test_connect():
    if session.get('venue_id'):
        emit('my response', {'data': 'Connected'})      
        session.pop('venue_id', None)
    else:
        request.namespace.disconnect() 

@socketio.on('join', namespace='/test')
def join(message):
    join_room(message['room'])
    room = message['room']  
    emit('my response', {'data': 'Entered the room ' + message['room']})

登录后,我设置session['venue_id'] = True并移至index.html. 我得到的输出是:

Received #: Connected
Received #: Entered the room venue_1

我的问题:初始运行后,我保持页面打开,index.html然后我的项目通过. 此时为什么我得到与上面相同的输出?我原以为在 , 之后会从 中删除,因此会被调用?stopstartsupervisorinitial connectvenue_idsessionrequest.namespace.disconnect()

有人可以向我解释一下这里的事件顺序吗?

谢谢

4

1 回答 1

2

Socket.IO 客户端有一个内置的重新连接逻辑。如果服务器消失了,就会出现预期的断开连接,但是客户端马上又开始重新连接,并且显然很快就成功了,因为重新启动的停机时间很短。

于 2015-07-14T06:12:24.600 回答