我在Mongoose文档中跟踪了the exact example for Model.count():
User.count({ type: 'jungle' }, function (err, count) {
console.log('I do not ever run');
});
这应该打印'我永远不会跑'。相反,它返回一个Query对象 - 根据文档,这不应该发生,因为我提供了一个回调。如何使回调函数运行?是否存在回调未运行的情况?
使用mongoose@3.6.17。谢谢!