我有一个raml doc,它使用如下字段指定我的请求数据结构:
"EstInstallDate": {
"description": "the estimated date that the installation will be completed",
"type": "string",
"format": "date"
}
这很好,因为当APIkit被命中时,会引发MessageException并带有以下文字:
string" 2016-32-32"对请求的日期格式无效 YYYY-MM-DD
但通用400错误有效负载是jsut"错误请求"我想在响应有效负载中包含此错误消息。
我该怎么做?
答案 0 :(得分:0)
我发现在我的异常块中我可以访问
exception.message
获取错误的完整字符串。但是,包含哪个字段未通过验证
会很棒