如何使用 bcrypt 模块使用 NestJS 在 MongoDB 中保存加密密码

How to use bcrypt module to save encrypted password in MongoDB using NestJS

如何将加密的密码保存到 MongoDB?

P.S。我是一名初级开发人员,仍在学习如何使用 NestJS

如果您使用的是 TypeOrm,则装饰器名称为 @BeforeInsert()

@Entity("YourTable", { schema: "yourdb" })
export class YourTable {
   ...
   @BeforeInsert()
   async hashPassword() {
      this.password = await bcrypt.hash(this.password, Number(process.env.HASH_SALT));
   }
   ...
}