我们已经讨论了不同的替代方案来支持长轮询的保持活动“喜欢”功能;然而,由于轮询在幕后工作的时间长,在不影响绝大多数用户的情况下实施起来并不容易。当我们继续讨论“正确”的解决方案时,我将为您提供一种解决方法来检测长轮询客户端中的网络故障(如果绝对需要)。
创建一个服务器方法,我们称之为 ping:
public class MyHub : Hub
{
public void Ping()
{
}
}
现在在客户端上创建一个间隔,您将在其中“ping”服务器:
var proxy = $.connection.myHub,
intervalHandle;
...
$.connection.hub.disconnected(function() {
clearInterval(intervalHandle);
});
...
$.connection.hub.start().done(function() {
// Only when long polling
if($.connection.hub.transport.name === "longPolling") {
// Ping every 10s
intervalHandle = setInterval(function() {
// Ensure we're connected (don't want to be pinging in any other state).
if($.connection.hub.state === $.signalR.connectionState.connected) {
proxy.server.ping().fail(function() {
// Failed to ping the server, we could either try one more time to ensure we can't reach the server
// or we could fail right here.
TryAndRestartConnection(); // Your method
});
}
}, 10000);
}
});
希望这可以帮助!