3

我已经使用下面的代码实现了异常处理。[编辑开始]我不知道为什么它会调用两次视图。[编辑完成]

基本控制器

public class BaseController : Controller
    {
        protected override void OnException(ExceptionContext filterContext)
        {
            if (filterContext.HttpContext.IsCustomErrorEnabled)
            {
                filterContext.ExceptionHandled = true;

                if (filterContext.Exception.GetType() == typeof(ArgumentOutOfRangeException))
                {
                    this.View("OutOfRange").ExecuteResult(this.ControllerContext);
                }
                else
                {
                    this.View("Error").ExecuteResult(this.ControllerContext);
                }
            }

            base.OnException(filterContext);
        }
    }

家庭控制器

public class HomeController : BaseController
{
        public ActionResult Exception2()
        {
            throw (new ArgumentOutOfRangeException());
        }

        public ActionResult Exception3()
        {
            throw (new Exception());
        }
}

错误视图(仅限共享文件夹)

@model System.Web.Mvc.HandleErrorInfo
@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <title>Error</title>
</head>
<body>
    <h2>
        Sorry, an error occurred while processing your request.
    </h2>
    <h3>
        @if (Model != null)
        {
            <p>@Model.Exception.GetType().Name<br />
                thrown in @Model.ControllerName @Model.ActionName</p>
            <br />
            @Model.Exception
        }
    </h3>
</body>
</html>

OutOfRange 视图(仅限共享文件夹)

@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <title>OutOfRange Exception</title>
</head>
<body>
    <div>
        <h3>
            @if (Model != null)
            {
                <p>@Model.Exception.GetType().Name<br />
                    thrown in @Model.ControllerName @Model.ActionName</p>
                <br />
                @Model.Exception
            }
        </h3>
    </div>
</body>
</html>

执行网址:http://[domainName]/Home/Exception2

在这里它工作正常。[编辑:这里它也调用了两次。]

在此处输入图像描述

执行网址:http://[domainName]/Home/Exception3

在这里它不能正常工作。您可以看到“抱歉,处理您的请求时出错”。来了两次。当我使用上面的 URL 调试应用程序时,错误视图调用了两次(第一次模型为空,第二次模型包含一些值)。我可以知道我的实施有什么问题吗? 在此处输入图像描述

4

3 回答 3

7

要尝试的事情:

  1. 如果存在,则从您的默认HandleError全局操作过滤器属性中删除它。Global.asax当您创建新的 ASP.NET MVC 3 应用程序时,默认模板会将其注册到RegisterGlobalFilters方法中。所以注释掉注册这个属性的行。
  2. 在 web.config 中启用自定义错误:

    <customErrors mode="On" />
    

更新:

如果您想将模型传递给Error.cshtml视图(因为它是强类型的HandleErrorInfo),您可以执行以下操作:

else
{
    string controllerName = filterContext.RouteData.GetRequiredString("controller");
    string actionName = filterContext.RouteData.GetRequiredString("action");
    var model = new HandleErrorInfo(filterContext.Exception, controllerName, actionName);
    var result = new ViewResult
    {
        ViewName = "Error",
        ViewData = new ViewDataDictionary<HandleErrorInfo>(model)
    };
    filterContext.Result = result;
}
于 2012-07-04T06:06:51.193 回答
1

base.OnException(filterContext);之前 添加if (filterContext.HttpContext.IsCustomErrorEnabled)

      protected override void OnException(ExceptionContext filterContext)
      {
          base.OnException(filterContext);
         if (filterContext.HttpContext.IsCustomErrorEnabled)

      }
于 2012-07-03T14:11:26.600 回答
1

我有同样的问题,但我设法通过添加来解决错误:

Response.End();

到我的 OnException 方法结束。

我知道这不是理想的解决方案,但是,它至少让我摆脱了束缚,直到我可以研究更完整的选择。

于 2014-01-22T15:09:04.023 回答