0

我在 angularJS 应用程序中断开与 websocket 的会话时遇到问题。我知道 Autobahn JS 提供了一个 diconnect() 函数,但它仍然不起作用。

这是连接部分:

connect : function(){
    var deferred = $q.defer();
    session = new ab.Session('ws://the address', function(){ 
        console.log("Connection open");
        deferred.resolve(session);
    }, function(){
        console.log("Connection closed");
        //Shared.pushAlert("info", "Connection has been closed");
    });
    return deferred.promise;
}

感谢您的任何建议

4

0 回答 0