gpt4 book ai didi

node.js - 无法访问 Typescript 中的 mongoose Schema 上下文

转载 作者:可可西里 更新时间:2023-11-01 09:54:36 28 4
gpt4 key购买 nike

我正在尝试将 .pre.method.static 函数应用于我的 Mongoose 模式。

我有以下代码,但我的 this 要么在错误的上下文中,要么我误解了 Schemas。

export interface IUser extends mongoose.Document {
email: string;
password: string;
firstName: string;
lastName: string;
comparePassword(password: string, callback: Function): void;
}

class UserSchema {
static get schema(): mongoose.Schema {
let userSchema = new mongoose.Schema({
email: {
type: String,
unique: true,
lowercase: true
},
firstName: {
type: String,
required: true
},
lastName: {
type: String,
required: true
},
password: {
type: String,
select: false
}
});

userSchema.pre('save', this.saveHandler);
userSchema.method('comparePassword', this.comparePassword);

return userSchema;
}

static saveHandler(next) {
let user = this.schema;
if(!user.isModified('password')) {
return next();
}
bcrypt.genSalt(10, (err, salt) => {
bcrypt.hash(user.password, salt, (err, hash) => {
user.password = hash;
next();
});
});
}

static comparePassword(password: string, callback: Function) {
let user = this.schema;
bcrypt.compare(password, user.password, (err, isMatch) => {
callback(err, isMatch);
});
}
}

export const UserModel = mongoose.model<IUser>('User', UserSchema.schema);

Typescript 抛出错误,指出 Property 'isModified' does not exist on type 'Schema'。

但是,在 javascript 中:

var schema = new Schema({
email: { type: String, unique: true, lowercase: true },
password: { type: String, select: false },
firstName: String,
lastName: String,
});

schema.pre('save', function(next) {
var user = this;
if(!user.isModified('password')) {
return next();
}
bcrypt.genSalt(10, function(err, salt) {
bcrypt.hash(user.password, salt, function(err, hash) {
user.password = hash;
next();
});
});
});

确实有正确的 this 上下文。我将如何正确构建我的 Typescript 代码以产生相同的效果?

最佳答案

这里的问题是静态方法中的this 值。这是你的原始代码。

class UserSchema {
static get schema(): mongoose.Schema {
let userSchema = new mongoose.Schema({ ... });
// this does not refer to UserSchema!
userSchema.pre('save', this.saveHandler);
userSchema.method('comparePassword', this.comparePassword);
return userSchema;
}

static saveHandler(next) {
...
}

static comparePassword(password: string, callback: Function) {
...
}
}

因此,第一种方法可能是使用 UserSchema 引用更改 this 关键字

class UserSchema {

static get schema(): mongoose.Schema {
let userSchema = new mongoose.Schema({ ... })
userSchema.pre('save', UserSchema.saveHandler);
userSchema.method('comparePassword', UserSchema.comparePassword);
return userSchema;
}

static saveHandler(next) {
let user = UserSchema.schema;
...
}

static comparePassword(password: string, callback: Function) {
...
}
}

但是,正如@toskv 所说,我建议不要使用静态方法。 Typescript 是 Javascript 的一个非常大的进步,但不要像在 Java 中那样思考。使用基于模块的设计。
例如,您可以将模块 userSchema.ts 定义为以下模板:

// private to the module
const _schema = new mongoose.Schema({ ... })
_schema.pre('save', _saveHandler)
_schema.method('comparePassword', _comparePassword)

/** from the outside you'll call it as
*
* const userSchema = require('...')
* userSchema.getSchema()
*/
export function getSchema() {
return _schema
}

// private to the module
function _saveHandler(next: Function) {
...
}

// private to the module
function _comparePassword(next: Function) {
...
}

关于node.js - 无法访问 Typescript 中的 mongoose Schema 上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38554466/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com