id: { type: 'ID' } 在官方 jsonschema 中定义的羽毛加 cli 创建的羽毛js 模型中生成在哪里?



我已经查看了JSON模式文档和示例,并且没有看到生成器在JSON模型中创建的ID类型。示例羽毛 - 加上cli jsonschema

  properties: {
    // !code: schema_properties
    id: { type: 'ID' },
    email: {},

在jsonschema官方文档中示例ID定义为

"properties": {
      "id": {
        "type": ["string", "integer"],

json schema不允许这样做。

根据https://github.com/feathers-plus/generator-feathers-plus/tree/master/master/docs/json-schema

羽毛模型基于JSON-SCHEMA。

这对我来说是他们的模型并不完全是JSON模式。

如果您想知道为什么,您可能应该在其Github仓库上提出问题。

相关内容

  • 没有找到相关文章

最新更新