ABP 显示错误详情

原文:https://www.cnblogs.com/Lulus/p/10551987.html

 

 

方式一:

  在这个位置:BIMMP.WebApp.Startup.BIMMPWebMvcModule 的 PreInitialize 这个方法里面

Configuration.Modules.AbpWebCommon().SendAllExceptionsToClients = true;//向前端返回完整错误日志

 

 

 

方式二:

  原文:https://www.cnblogs.com/farb/p/ABPException.html

  ABP处理任何异常时都会触发AbpHandledExceptionData事件,
  注册该事件后就会收到通知(查看事件总线(EventBus)获取更多信息关于事件总线的信息)

  注意:ABP会自动注册该类

public class MyExceptionHandler : IEventHandler<AbpHandledExceptionData>, ITransientDependency
{
    public void HandleEvent(AbpHandledExceptionData eventData)
    {
        //TODO: 检查 eventData.Exception!
    }
}

 

posted @ 2019-12-26 10:43  古兴越  阅读(723)  评论(0编辑  收藏  举报