JavaScript格式化json值取决于架构

时间:2017-07-11 14:18:48

标签: javascript json mongodb jsonschema mongodate

是否有一种简单的方法可以根据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)

在datetime的情况下做同样的事情。 这种格式化必须是通用的,对嵌套对象也有效。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

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