如何捕获Web API 2中的所有异常?

问题描述 投票:0回答:1

我正在 Web API 中编写 RESTful API,但我不确定如何有效地处理错误。我希望 API 返回 JSON,并且它每次都需要包含完全相同的格式 - 即使出现错误也是如此。以下是成功响应和失败响应的几个示例。

成功:

{
    Status: 0,
    Message: "Success",
    Data: {...}
}

错误:

{
    Status: 1,
    Message: "An error occurred!",
    Data: null
}

如果存在异常 - 任何异常,我想返回一个与第二个类似的响应。什么是万无一失的方法来做到这一点,以便不遗漏任何异常?

c# asp.net asp.net-web-api2
1个回答
12
投票

实施

IExceptionHandler

类似:

 public class APIErrorHandler : IExceptionHandler
 {
     public Task HandleAsync(ExceptionHandlerContext context, CancellationToken cancellationToken)
     {
         var customObject = new CustomObject
             {
                 Message = new { Message = context.Exception.Message }, 
                 Status = ... // whatever,
                 Data = ... // whatever
             };

        //Necessary to return Json
        var jsonType = GlobalConfiguration.Configuration.Formatters.JsonFormatter;
        json.SerializerSettings.Formatting = Newtonsoft.Json.Formatting.Indented;    

        var response = context.Request.CreateResponse(HttpStatusCode.InternalServerError, customObject, jsonType);

        context.Result = new ResponseMessageResult(response);

        return Task.FromResult(0);
    }
}

并在 WebAPI 的配置部分 (

public static void Register(HttpConfiguration config)
) 中写入:

config.Services.Replace(typeof(IExceptionHandler), new APIErrorHandler());
© www.soinside.com 2019 - 2024. All rights reserved.