我正在 Web API 中编写 RESTful API,但我不确定如何有效地处理错误。我希望 API 返回 JSON,并且它每次都需要包含完全相同的格式 - 即使出现错误也是如此。以下是成功响应和失败响应的几个示例。
成功:
{
Status: 0,
Message: "Success",
Data: {...}
}
错误:
{
Status: 1,
Message: "An error occurred!",
Data: null
}
如果存在异常 - 任何异常,我想返回一个与第二个类似的响应。什么是万无一失的方法来做到这一点,以便不遗漏任何异常?
实施
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());