我怎样才能捕获 MVC3 异常而不返回空白视图?

发布于 2024-12-09 12:10:22 字数 825 浏览 0 评论 0原文

我想在重写方法 OnException 中处理异常,代码如下: 如果我设置filterContext.ExceptionHandled = true; 返回视图将显示空白视图。 我不希望它重定向到 500 页面。 那我该怎么办呢?

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

    var exception = new HttpException(null, filterContext.Exception);
    if (exception.GetHttpCode() == (int)HttpStatusCode.InternalServerError)
    {
        if (WebConstants.systemHandleExceptionList.Contains(filterContext.Exception.GetType()))
        {
            //process the error
            SaveErrorMessage(filterContext.Exception.GetType().Name);

            filterContext.ExceptionHandled = true;
        }
        else
        {
            //record the unhandle message to log
            errorlog.Error("", filterContext.Exception);
        }
    }
}

I want to process the exception in the override method OnException the code like below:
if i set the filterContext.ExceptionHandled = true;
the return view will show a blank view.
i don't want it redirect to the 500 page.
so how could i do?

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

    var exception = new HttpException(null, filterContext.Exception);
    if (exception.GetHttpCode() == (int)HttpStatusCode.InternalServerError)
    {
        if (WebConstants.systemHandleExceptionList.Contains(filterContext.Exception.GetType()))
        {
            //process the error
            SaveErrorMessage(filterContext.Exception.GetType().Name);

            filterContext.ExceptionHandled = true;
        }
        else
        {
            //record the unhandle message to log
            errorlog.Error("", filterContext.Exception);
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘和柠 2024-12-16 12:10:22

将标志设置为 true 后,您可以立即将其重定向到不同的页面。请参阅下面的示例

RouteValueDictionary errorRouteValues = new RouteValueDictionary( new { controller = "Error", action = "Action" } );

filterContext.Result = new ActionRedirectResult( errorRouteValues );
filterContext.Cancel = true;

you can redirect it to a different page right after setting the flag to true. See example below

RouteValueDictionary errorRouteValues = new RouteValueDictionary( new { controller = "Error", action = "Action" } );

filterContext.Result = new ActionRedirectResult( errorRouteValues );
filterContext.Cancel = true;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文