我在似乎无法访问的模式上定义了一个实例方法。在我详细介绍之前,我会说我已经阅读了[this question](Mongoose instance method is undefined),它有同样的问题,但我的根本原因肯定是不同的。在将模型连接到其名称之前,我定义了所有实例方法。
首先我定义了一个模式,然后定义了一个实例方法: AccountSchema.methods.addFunds = function(amountToAd, callback) { // 做一些事情来添加资金 return callback(); }
在该文件的底部,我将名称与架构相关联: var exports = module.exports = Account = mongoose.model('Account', AccountSchema);
作为记录,在关联架构和名称之前,我检查以确保 AccountSchema.methods 具有我的实例方法。
后来,我使用 Account.findOne 来获取一个帐户的实例:
AccountSchema.statics.login = function( email, password, callback) {
Account.findOne({ email:email}, function( err, doc){
if(err) {
console.log(err, null);
}
// below is just some stuff to see if the doc is associated to the schema
if(doc) {
var keys = Object.keys(doc.schema);
for(var propertyName in doc.schema) {
console.log(propertyName + ": " + doc[propertyName]);
}
// blah, do some other stuff
callback(doc);
}
}
我包括上面的代码片段,因为它看起来就像我从我的数据库中获取帐户时,它不再有任何实例方法。
最后,当我尝试调用 doc.addFunds 时,我得到:
TypeError: Object #<Object> has no method 'addFunds'
我将不胜感激任何帮助或指向使用实例方法的完全完整的猫鼬模式定义的链接。