创建父文档时未初始化子文档。 Nestjs/猫鼬

时间:2021-02-16 22:09:36

标签: mongodb mongoose schema nestjs

创建用户时,子文档没有用默认值初始化。我只得到没有 ecdsa 字段的用户对象。你能告诉我哪里出错了吗?

P.S.我希望 Ecdsa 成为用户模型的一部分,而不是用户模型具有此文档的 ID。有可能吗?

用户架构:

@Schema()
export class User {
  @Prop({required: true, unique: true })
  tgId: number;

  @Prop({default: "anonymus"})
  tgUsername: string;

  @Prop({default: Date.now()})
  registrationDate: Date;

  @Prop({default: () => ({})})
  ecdsa: Ecdsa;
}

export type UserDocument = User & mongoose.Document;
export const UserSchema = SchemaFactory.createForClass(User);

Ecdsa 架构:

@Schema()
export class Ecdsa {
  @Prop({default: 0}) //doesn't works
  operatorsCount: number;

  @Prop({
    type: [{
      type: mongoose.Schema.Types.ObjectId,
      ref: 'UserOperator'
    }],
    default: []
  })
  operators: UserOperator[];

  @Prop({default: 'test'}) //doesn't works
  test: string;
}

export type EcdsaDocument = Ecdsa & mongoose.Document;
export const EcdsaSchema = SchemaFactory.createForClass(Ecdsa);

1 个答案:

答案 0 :(得分:0)

不确定这个方法是否正确,但它对我有用。现在用户内部的 ecdsa 对象在用户创建时初始化。

我只是改为:

@Prop({type: EcdsaSchema,
    default: () => ({})})
  ecdsa: EcdsaDocument;