我在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;
}
感谢您提出任何建议