asp.net-mvc – HandleErrorAttribute无法正常工作

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – HandleErrorAttribute无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在VS10中启动了一个MVC 3模板项目,并修改了global.asax.cs:
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
    filters.Add(new HandleErrorAttribute { ExceptionType = typeof(DivideByZeroException),View = "DivideByZeroException",Order = 1 });
    filters.Add(new HandleErrorAttribute { View = "AllOtherExceptions",Order = 2 });
}

到web.config我添加了:

<customErrors mode="On">

然后创建了相应的视图,最后在其中一个动作中添加了DivideByZero-throw.

结果:呈现了视图AllOtherExceptions.

解决方法

虽然我讨厌不同意达林所说的任何事情,但他错了.

设置属性没有问题(这就是你应该这样做的方式).

原始代码无法按预期工作的唯一原因是因为您设置了错误的订单.

MSDN

The OnActionExecuting(ActionExecutingContext),
OnResultExecuting(ResultExecutingContext),and
OnAuthorization(AuthorizationContext) filters run in forward order.
The OnActionExecuted(ActionExecutedContext),and
OnException(ExceptionContext) filters run in reverse order.

因此,您的通用AllOtherExceptions过滤器需要是最低订单号,而不是最高订单号.

希望下次有用.

原文链接:https://www.f2er.com/aspnet/251452.html

猜你在找的asp.Net相关文章