0

是否有一种简单的方法可以根据其 JSON Schema 上的格式(特别是 mongodb 的日期/日期时间格式)来确定 JSON 字段的值?示例:JSON:

{
  "firstName": "Alex",
  "lastName": "Alex",
  "birthDate": "1996-06-20"
}

架构:

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "definitions": {},
    "id": "http://example.com/example.json",
    "properties": {
        "birthDate": {
            "id": "/properties/birthDate",
            "type": "string",
              "format":"date"
        },
        "firstName": {
            "id": "/properties/firstName",
            "type": "string"
        },
        "lastName": {
            "id": "/properties/lastName",
            "type": "string"
        }
    },
    "type": "object"
}

转换后的最终结果:

{
  "firstName": "Alex",
  "lastName": "Alex",
  "birthDate": {
    $date": 835228800000
  }
}

(我使用这种格式是因为我使用的是 RestHeart)

在日期时间的情况下做同样的事情。这种格式必须是通用的并且对嵌套对象也有效。

谢谢你的帮助

4

1 回答 1

0

我开发了一个 Node.js 模块来解决这个问题:这是感兴趣的链接: https ://www.npmjs.com/package/mongodates

于 2017-07-13T18:48:03.513 回答