属性'password'在类型 'Document<any>' 上不存在



我正在使用TypeScript在Mongoose中创建一个用户模式,当我引用模式的属性时,就像这样。password,我得到这个错误:类型"文档"上不存在属性"password">当我在pre()函数上使用属性时不会发生此错误,因为我可以使用IUser界面键入它。我不能为我的方法做同样的,所以有什么办法来解决这个问题??这很奇怪,因为我发现其他人使用相同的代码并且它对他们有效,所以可能错误来自其他东西。在这里您可以找到带有错误的存储库:https://github.com/FaztWeb/restapi-jwt-ts

import { model, Schema, Document } from "mongoose";
import bcrypt from "bcrypt";
export interface IUser extends Document {
email: string;
password: string;
comparePassword: (password: string) => Promise<Boolean>
};
const userSchema = new Schema({
email: {
type: String,
unique: true,
required: true,
lowercase: true,
trim: true
},
password: {
type: String,
required: true
}
});
userSchema.pre<IUser>("save", async function(next) {
const user = this;
if (!user.isModified("password")) return next();
const salt = await bcrypt.genSalt(10);
const hash = await bcrypt.hash(user.password, salt);
user.password = hash;
next();
});
userSchema.methods.comparePassword = async function(password: string): Promise<Boolean> {
return await bcrypt.compare(password, this.password);
};
export default model<IUser>("User", userSchema);

输出错误

您可以在第一次创建Schema的地方添加一个泛型声明:

const userSchema = new Schema<IUser>({ ... });

当你去添加方法时,应该使this精炼到包括IUser

相关内容

  • 没有找到相关文章

最新更新