有没有办法改变 Web Api 对错误消息的默认行为,例如:
GET /trips/abc
回应(转述):
HTTP 500 Bad Request
{
"Message": "The request is invalid.",
"MessageDetail": "The parameters dictionary contains a null entry for parameter 'tripId' of non-nullable type 'System.Guid' for method 'System.Net.Http.HttpResponseMessage GetTrip(System.Guid)' in 'Controllers.TripController'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter."
}
我想避免给出关于我的代码的这个相当详细的信息,而是用类似的东西替换它:
HTTP 500 Bad Request
{
error: true,
error_message: "invalid parameter"
}
我可以在 UserController 中做到这一点,但代码执行甚至没有那么远。
编辑:
我找到了一种从输出中删除详细错误消息的方法,使用 Global.asax.cs 中的这行代码:
GlobalConfiguration.Configuration.IncludeErrorDetailPolicy =
IncludeErrorDetailPolicy.LocalOnly;
这会产生如下消息:
{
"Message": "The request is invalid."
}
哪个更好,但不完全是我想要的 - 我们指定了许多数字错误代码,这些代码映射到客户端的详细错误消息。我只想输出适当的错误代码(我可以在输出之前选择,最好通过查看发生的异常类型),例如:
{ error: true, error_code: 51 }