我有一个 raml 文档,它使用如下字段指定我的请求数据结构:
"EstInstallDate": {
"description": "the estimated date that the installation will be completed",
"type": "string",
"format": "date"
}
这很好,因为当 APIkit 被命中时,会引发 MessageException 并带有以下文本:
字符串“2016-32-32”对请求的日期格式无效 yyyy-MM-dd
但通用的 400 错误有效负载是 jsut“错误请求”我想将此错误消息包含在响应有效负载中。
我该怎么做呢?