首页 > 其他 > 详细

core直接获取报异常数据

时间:2019-11-28 19:50:40      阅读:96      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

 报异常直接跳转到/Home/Error

        [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
        public IActionResult Error()
        {
            var _IExceptionHandlerFeature = HttpContext.Features.Get<IExceptionHandlerPathFeature>();
            var _Exception = _IExceptionHandlerFeature?.Error;
            sys_Log errorlog = new sys_Log();
            errorlog.gid = new Guid();
            errorlog.IpAddress = HttpContext.Connection.RemoteIpAddress.ToString();
            errorlog.PageUrl = _IExceptionHandlerFeature.Path;
            errorlog.ShortMessage = _Exception.Message;
            errorlog.FullMessage = _Exception.StackTrace;
            errorlog.userName = _account.UserName;
            errorlog.createTime = DateTime.Now;
            _logService.AddLog(errorlog);
            return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
        }

 

core直接获取报异常数据

原文:https://www.cnblogs.com/shuaimeng/p/11953061.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!