1

我有一个 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“错误请求”我想将此错误消息包含在响应有效负载中。

我该怎么做呢?

4

1 回答 1

1

我发现在我的异常块中我可以访问

异常消息

获取错误的完整字符串。但是,最好包括哪个字段未通过验证

于 2016-04-29T17:53:11.737 回答