浏览器关闭时结束会话会引发异常
我正在开发一个 Asp.net 零项目,前端为 Angular,后端为 Asp.net core,数据库为 MS SQL Server。我正在开发一种功能,通过该功能,我可以在关闭浏览器或选项卡时调用注销函数来结束会话。
以下是在浏览器/选项卡关闭上调用注销的Javascript代码:
window.addEventListener("unload", function (e)
{
if (context.validNavigation == 0)
{
context._authService.logout();
}
});
下面是C#函数,如果我们通过菜单单击手动注销,该函数可以正常工作,但当我们关闭浏览器时失败:
public async Task LogOut()
{
if (AbpSession.UserId != null)
{
if (AbpSession.TenantId != null)
{
var user = _userManager.GetUserById((long)AbpSession.UserId);
if (user != null)
{
user.AdminLoginTime = null;
_userManager.UpdateAsync(user); **//This is where I get Task exception**
}
LoginInput loginInput = new LoginInput
{
EventId = (int)AbpSession.TenantId,
Count = _commonLookupAppService.CurrentloginCount().Result
};
this._loginHub.Clients.Group("login_" + AbpSession.TenantId).SendAsync("ReceiveLoginStatus", loginInput);
}
var tokenValidityKeyInClaims = User.Claims.First(c => c.Type == AppConsts.TokenValidityKey);
RemoveTokenAsync(tokenValidityKeyInClaims.Value);
var refreshTokenValidityKeyInClaims = User.Claims.FirstOrDefault(c => c.Type == AppConsts.RefreshTokenValidityKey);
if (refreshTokenValidityKeyInClaims != null)
{ RemoveTokenAsync(refreshTokenValidityKeyInClaims.Value);
}
if (AllowOneConcurrentLoginPerUser())
{
_securityStampHandler.RemoveSecurityStampCacheItem(
AbpSession.TenantId,
AbpSession.GetUserId()
);
}
}
}
仅当我们关闭浏览器时,才会在 _userManager.UpdateAsync(user) 处生成任务异常。如果我通过单击菜单按钮正确注销,则效果很好。任务异常不允许记录在 AbpUsers 和 AbpUsers 中更新。 SignalR Hub,也是异常退出c#函数。 我无法在关闭浏览器时解决此问题。
堆栈跟踪:
at Abp.Domain.Uow.UnitOfWorkInterceptor.<InternalInterceptAsynchronous>d__5`1.MoveNext()
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at ryt.Web.Controllers.TokenAuthController.<LogOut>d__37.MoveNext() in D:\Ravi_2021\sinyunpl\aspnet-core\src\ryt.Web.Core\Controllers\TokenAuthController.cs:line 343
如果你们中有人遇到过此问题并找到了解决方案,请告诉我。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据微软文档发现 此处:
也许在您完成 Logout 方法中的工作之前,signalR 客户端会自动停止连接?这样就可以理解为什么只有在关闭选项卡时才会发生错误。
According to Microsoft documentation found here:
Perhaps the signalR client is automatically stopping the connection before you are finished working in the Logout method? It would then make sense why the error only happens when you close the tab.
当浏览器关闭时,TCP 连接将关闭,HTTP 请求将中止。
ABP 使用 <代码>HttpContext.RequestAborted
CancellationToken
通过HttpContextCancellationTokenProvider
。要在这种情况下重写该行为,请在
using
语句中调用CancellationTokenProvider.Use(CancellationToken.None)
并await
您的异步方法调用:参考:<一href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/8348c19895c50d87b654ce56ac367cb9a4e8822a/test/Abp.TestBase.SampleApplication.Tests/CancellationTokenProvider/CancellationToken_Tests.cs#L56" rel="nofollow noreferrer">https://github.com/aspnetboilerplate/aspnetboilerplate/.../CancellationToken_Tests.cs#L56
When the browser is closed, the TCP connection is closed and the HTTP request is aborted.
ABP uses the
HttpContext.RequestAborted
CancellationToken
viaHttpContextCancellationTokenProvider
.To override that behaviour in this case, call
CancellationTokenProvider.Use(CancellationToken.None)
in ausing
statement andawait
your async method calls:Reference: https://github.com/aspnetboilerplate/aspnetboilerplate/.../CancellationToken_Tests.cs#L56