我在处理signalR js客户端上的连接生命周期事件时遇到了麻烦。我在客户端上使用aspnet/signalr-client npm库,在asp.net核心服务器上使用microsoft.aspnetcore.signalr库。
当我关闭服务器(alt + F4)时,客户端方法onClosed(error)
被触发,我想要的是documentation中的onReconnecting()
方法如何描述已解雇,客户端尝试重新连接。我已经尝试忽略此问题并在onClosed(error)
方法中建立新连接,但随后出现Uncaught (in promise) Error: Cannot start a connection that is not in the 'Initial' state.
错误。
为什么onClosed(error)
方法被解雇且客户端没有尝试重新连接,我怎么可能解决这个问题?
var connection = new signalR.HubConnection('http://localhost:8956/testhub');
connection.on('onStart', function() {
console.log('onStart');
});
connection.on('onEnd', function() {
console.log('onEnd');
})
console.log('connection=', connection);
connection.onClosed = function(error) { // this gets fired
console.log('connection closed');
//setTimeout(function() {
// connection.start();
//}, 10000);
}
connection.onReconnecting = function() { // this not
console.log('trying to reconnect');
}
connection.start();
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.SignalR;
using System.Threading.Tasks;
namespace SignalRCoreConsole.Hubs
{
class TestHub : Hub
{
public void Start()
{
Clients.All.InvokeAsync("onStart");
Console.WriteLine("TestHub: Start");
}
public void End()
{
Clients.All.InvokeAsync("onEnd");
Console.WriteLine("TestHub: End");
}
public override Task OnDisconnectedAsync(Exception exception)
{
Console.WriteLine("client disconnected");
return base.OnDisconnectedAsync(exception);
}
public override Task OnConnectedAsync()
{
Console.WriteLine("client connected");
return base.OnConnectedAsync();
}
}
}
答案 0 :(得分:0)
Asp.NET Core的SignalR没有重新连接。您在上一版SignalR的文档中查找了onReconnecting
,但新版本中的功能已不再存在。看一下announcement,它描述了两者之间更大的突破性变化。