$.connection.myHubName.client.disconnect(function () {
$.connection.hub.start();
});
on hub.start();服务器已启动但仍能正常工作
答案 0 :(得分:1)
正确的方法是挂断集线器连接而不是集线器(因此不客户端对象)。
$.connection.hub.disconnected(function () {
console.log('We are currently experiencing difficulties with the connection.')
});