mongodb集合名称的Loopback4模型定义选项



我正在使用环回4,并试图用属性配置Model注释,以配置如何在Mongo中创建集合。

我有一个名为say Client的模型,我希望Mongo中的集合被称为Clients。与文档的交叉令人困惑,因为它们引用了v4文档中v3的属性。

我试过这个:

import {Entity, model, property} from '@loopback/repository';
@model({
  settings: {strict: false},
  name: 'client',
  plural: 'clients',
  options: {
    mongodb: {
      collection: 'clients',
    },
  },
})
export class Client extends Entity {
  @property({
    type: 'string',
    id: true,
    defaultFn: 'uuidv4',
    index: true,
  })
  id: string;
  @property({
    type: 'string',
    required: true,
  })
  name: string;
  @property({
    type: 'string',
  })
  code?: string;
  constructor(data?: Partial<Client>) {
    super(data);
  }
}

没有Joy,仍然创建集合作为类名客户端

这是2014年的,但也许它仍然有效。尝试不放入mongodb密钥options

  settings: {strict: false},
  name: 'client',
  plural: 'clients',
  mongodb: {
    collection: 'clients',
  },

请注意,所有模型设置都必须嵌套在settings属性中,LB4还不支持顶级设置。

此外,据我所知,选项plural并没有被LB4使用。

我认为以下代码应该适用于您:

@model({
  name: 'client',
  settings: {
    strict: false
    mongodb: {
      collection: 'clients',
    },
  },
})
export class Client extends Entity {
  // ...
}

更新:我打开了一个GitHub问题,讨论如何让来自LB3的用户更容易使用@model装饰器。看见https://github.com/strongloop/loopback-next/issues/2142

相关内容

  • 没有找到相关文章

最新更新