民间, 我试图用promises包装以下内容,并返回一个Mongo文档。
控制器的捕捉正在获得error: 'TypeError: Cannot call method \'apply\' of undefined'
将对象从db返回到控制器的正确方法是什么?
控制器:
Q.fcall(Users.fetchId(authId)).then(function userVerification(userObject) {
console.log ('got back',userObject);
responses.Unauthorized('Unauthorized ID', res);
}).catch(function handleError(err) {
responses.InternalServerError(''+err, res);
});
用户型号:
Users.prototype.fetchId = function fetchId(authId) {
return this.mongodb.fetchId(authId);
};
蒙戈:
MongoDatabase.prototype.fetchId = function fetchId(id) {
var result = {}
return this.authDB.query('users', function(collection) {
return collection.findOne({_id:id}, function (err, doc) {
if (!_.isEmpty(doc)) {
var result = doc;
}
console.log ('mongo',result);
return result;
});
});
};
答案 0 :(得分:2)
Q.fcall
将一个函数作为其第一个参数,然后将参数应用于该函数。通过传递Users.fetchId(authId)
,您将调用该函数的结果传递给它。
尝试传递函数,然后传递要应用于它的参数:
Q.fcall(Users.fetchId, authId).then( fn )