我有一个简单的node.js代码,它使用mongoose,在保存但无法检索时有效。
.save()
有效,但.findOne()
没有。
mongoose = require('mongoose');
mongoose.connect("mongodb://localhost/TestMongoose");
UserSchema = new mongoose.Schema({
field: String
});
Users = mongoose.model('userauths', UserSchema);
user = new Users({
field: 'value'
});
//user.save();
^有效。即用值更新数据库。 screenshot
//user.findOne({field:'value'},function(err,value){});
^引发错误:
user.findOne({field:'value'},function(err,value){});
^
TypeError: Object { field: 'value', _id: 52cd521ea34280f812000001 } has no method 'findOne'
at Object.<anonymous> (C:\localhost\nodeTest\z.js:16:6)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:901:3
console.log(JSON.stringify( user , null, 40));
^只返回对象{field: 'value'}
console.log(JSON.stringify( Users , null, 40));
^返回undefined
Users.findOne();
^没有错误,但没有返回任何内容
(findOne()
中的函数Users
也是如此?但为什么console.log(..Users..
会返回undefined
?)
导致findOne()
无法正常工作的问题是什么?
答案 0 :(得分:9)
findOne
是Users
模型上的方法,而不是您的user
模型实例。它通过回调向调用者提供异步结果:
Users.findOne({field:'value'}, function(err, doc) { ... });
答案 1 :(得分:1)
要详细说明当前正确的答案,请注意userSchema.path和userSchema.statics之间的区别 - 前者使用'this'作为模型的实例,而后者'this'指的是模型“类“本身:
var userSchema = ...mongoose schema...;
var getUserModel = function () {
return mongoDB.model('users', userSchema);
};
userSchema.path('email').validate(function (value, cb) {
getUserModel().findOne({email: value}, function (err, user) {
if (err) {
cb(err);
}
else if(user){ //we found a user in the DB already, so this email has already been registered
cb(null,false);
}
else{
cb(null,true)
}
});
},'This email address is already taken!');
userSchema.statics.findByEmailAndPassword = function (email, password, cb) {
this.findOne({email: email}, function (err, user) {
if (err) {
return cb(err);
}
else if (!user) {
return cb();
}
else {
bcrypt.compare(password, user.passwordHash, function (err, res) {
return cb(err, res ? user : null);
});
}
});
};
};