9

我用 Mongoose 定义了一个实例方法来验证代表(用户):

RepSchema.methods.authenticate = function(password){
  return this.encryptPassword(password) === this.hashed_password;
};

在我的应用程序中,我找到了代表并调用了authenticate它的方法:

var mongoose = require("mongoose");
var Rep = mongoose.model("Rep");

Rep.findOne({email: email}, function(err, rep){
  if (rep.authenticate(req.body.session.password)){
    req.session.rep_id = rep._id;
    res.redirect('/calls', {});
  }
});

但是我收到此错误:

TypeError: Object { email: 'meltzerj@wharton.upenn.edu',
  password: XXXXXXXXX,
  name: 'meltz',
  _id: 4fbc6fcb2777fa0272000003,
  created_at: Wed, 23 May 2012 05:04:11 GMT,
  confirmed: false,
  company_head: false } has no method 'authenticate'

我究竟做错了什么?

4

1 回答 1

16

所以我终于弄清楚我做错了什么。mongoose 源代码schema.methods在模型的模式设置为模型名称 ( mongoose.model("modelname", modelSchema)) 处将所有定义的方法应用于模型原型。因此,在将模型设置为其名称之前,您必须定义所有方法,将这些方法添加到 Schema 实例的方法对象中。我在定义方法之前设置了模型。问题解决了。

于 2012-05-23T21:50:19.193 回答