属性“密码”在文档类型上不存在

时间:2018-12-06 04:56:26

标签: typescript mongoose bcrypt

我遇到此错误,文档类型上不存在属性“密码”。那么谁能告诉我我的代码是否有问题?

const userSchema = new mongoose.Schema({
  email: { type: String, required: true, unique: true },
  password: { type: String, required: true },
  name: { type: String, required: true }
});

userSchema.pre("save", function save(next) {
  const user = this;
  if (!user.isModified("password")) {
    return next();
  }
  bcrypt.genSalt(10, (err, salt) => {
    if (err) {
      return next(err);
    }
    bcrypt.hash(user.password, salt, (err: mongoose.Error, hash) => {
      if (err) {
        return next(err);
      }
      user.password = hash;
      next();
    });
  });
});

enter image description here

4 个答案:

答案 0 :(得分:4)

我不知道这是否会有所帮助,因为问题已经很老了,但是我尝试过

import mongoose, { Document } from 'mongoose';

const User = mongoose.model<IUser & Document>("users", UserSchema);

type IUser = {
    username: string
    password: string
}

mongoose.model需要一个文档类型,并且您想扩展该文档,因此将两种类型统一起来

答案 1 :(得分:4)

您还可以将接口类型传递给架构本身。

import { model, Schema, Document } from 'mongoose';

const userSchema = new mongoose.Schema<IUser>({
  email: { type: String, required: true, unique: true },
  password: { type: String, required: true },
  name: { type: String, required: true }
});

interface IUser extends Document{
  email: string;
  password: string;
  name: string;
}

答案 2 :(得分:3)

根据猫鼬文档,您需要在此处添加带有预保存钩子的类型,预钩子定义为

/**
 * Defines a pre hook for the document.
 */
pre<T extends Document = Document>(
  method: "init" | "validate" | "save" | "remove",
  fn: HookSyncCallback<T>,
  errorCb?: HookErrorCallback
): this;

如果您有如下所示的界面,

export interface IUser {
  email: string;
  password: string;
  name: string;
}

使用预保存的钩子添加类型

userSchema.pre<IUser>("save", function save(next) { ... }

答案 3 :(得分:0)

在声明具有定义字段的接口之后,在架构构造后不久声明.pre函数。

Image for reference