断开与Autobahn JS的会话

时间:2016-04-01 11:12:47

标签: javascript angularjs autobahnws

我在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;
}

感谢您提出任何建议

0 个答案:

没有答案