在Application_Error中获取当前模型

时间:2014-10-06 22:45:35

标签: c# asp.net-mvc

所以我有一个全局错误处理程序,只要我的应用程序出错,就会发送一封电子邮件。这很有效,但是,有一些错误(即可怕的“对象引用未设置为对象的实例”错误)非常难以跟踪。我有一个简洁的函数,将序列化的模型转换为字符串,所以我实际上可以看到有问题的代码行正在处理的数据,但我想知道有没有办法在应用程序中捕获模型级错误处理程序?我正在获得我需要的所有其他内容,即url,堆栈跟踪等,只是对当前正在处理的数据没有可见性。这是我目前在Application_Error中的内容:

    protected void Application_Error(object sender, EventArgs e)
    {
        Exception exception = Server.GetLastError();
        HttpContext con = HttpContext.Current;
        string serverUrl = "";
        if (con.Request != null)
        {
            serverUrl =  con.Request.Url.ToString();
        }
        var user = "";

        if (GlobalSiteData.CurrentUser != null) user = GlobalSiteData.CurrentUser.Username;
        var ip = (Request.UserHostAddress == null ? "" : Request.UserHostAddress.ToString());
        try {
            Mailers.UserMailer mailer = new Mailers.UserMailer();
            ErrorLog elog = new ErrorLog
            {
                ErrorDate = DateTime.Now,
                InnerException = (exception.InnerException == null ? "" : exception.InnerException.Message),
                Message = exception.Message,
                UserName = user,
                Source = exception.TargetSite.Name,
                SourceUrl = serverUrl,
                StackTrace = exception.StackTrace,
                IPAddr = ip
            };
            mailer.LogEntry(elog).Send();
            ErrorHelpers.LogErrorToFile(elog);
        }
        catch (Exception ex)
        {
            string err = ex.Message;
        }
    }

1 个答案:

答案 0 :(得分:3)

如果这是一个MVC应用程序,那么我建议你使用错误处理程序。这样你就可以访问filterContext,它应该包含你需要的所有内容。

在global.asax或AppStart文件夹的FilterConfig.cs中注册以下行。

filters.Add(new CustomHandleErrorAttribute());

创建以下类并添加所需的日志记录。这应记录MVC框架内发生的所有异常。 MVC框架之外的条件不会被捕获,但在大多数情况下,这应该是第一道防线。我将链接另一个使用MVC控制器上可用的OnException方法的选项。

   public class CustomHandleErrorAttribute: HandleErrorAttribute {

      public override void OnException(ExceptionContext filterContext)
      {
          if (filterContext.Exception != null)
          {
            // do something
          }

          base.OnException(filterContext);
      }
   }

这是另一种错误处理方法,也仅适用于MVC。

http://blog.dantup.com/2009/04/aspnet-mvc-handleerror-attribute-custom.html