民间,
我试图用promise包装以下内容,并返回一个Mongo文档。
管制员的抓捕行动error: 'TypeError: Cannot call method \'apply\' of undefined'
将对象从数据库返回到控制器的正确方法是什么?
控制器:
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;
});
});
};
最佳答案
Q.fcall
将功能作为其第一个参数,然后将参数应用到该功能。通过传递它Users.fetchId(authId)
,就传递给它调用该函数的结果。
尝试传递函数,然后传递要应用到该函数的参数:
Q.fcall(Users.fetchId, authId).then( fn )