Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

mongoos 的 findOne 方法 回调函数 err 和 doc 两个参数都为null

$
0
0

m.statics.info = function(groupId){ var _this = this; return new Promise(function (resolve, reject){ _this.findOne({_id:groupId},function(err,doc){
console.log(err); console.log(doc); if(!err){ resolve(doc); }else{ reject(err); } }); }); }

为什么 mongoos 的 findOne 方法 回调函数 err 和 doc 两个参数都为null


Viewing all articles
Browse latest Browse all 14821

Trending Articles