相当于Netle 2的HandleErrorAttribute

时间:2019-04-21 16:47:20

标签: c# asp.net-core asp.net-core-mvc .net-core-2.0

我正在将.Net 4.6.2项目迁移到Net Core 2。

HandleErrorAttribute等于什么?在第二行以下接收错误

public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
    filters.Add(new CustomerAuthorize());
    filters.Add(new HandleErrorAttribute()); 
}

错误:

The type or namespace name 'HandleErrorAttribute' could not be found (are you missing a using directive or an assembly reference?

1 个答案:

答案 0 :(得分:0)

在asp.net核心中,您可以使用Exception Filters

我们可以创建一个自定义的异常过滤器,例如:

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
....
....

public class HandleExceptionAttribute : ExceptionFilterAttribute
{
 public override void OnException(ExceptionContext context)
 {
  var result = new ViewResult { ViewName = "Error" };
  var modelMetadata = new EmptyModelMetadataProvider();
  result.ViewData = new ViewDataDictionary(
          modelMetadata, context.ModelState);
  result.ViewData.Add("HandleException", 
          context.Exception);
  context.Result = result;
  context.ExceptionHandled = true;
 }           
}

可以在三个范围之一将过滤器添加到管道。您可以使用属性将过滤器添加到特定的操作方法或控制器类。或者,您可以为所有控制器和操作全局注册过滤器。通过将过滤器添加到ConfigureServices中的MvcOptions.Filters集合中来全局添加过滤器:

 services.AddMvc(options=>options.Filters.Add(new HandleExceptionAttribute()));

请参阅Create Custom Exception Filter In ASP.NET Core