为什么在mongoose中使用find方法时console.log返回空数组?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么在mongoose中使用find方法时console.log返回空数组?相关的知识,希望对你有一定的参考价值。
我是后端开发人员的新手。我正在尝试检查集合中是否已有用户,如果没有,则控制台日志为“ no”。我在'const b'中没有指示的数据,但是我一直在终端中获取空数组,而不是'no'。
const b = email: "xxx@mail.ru", password: "wwww"
MyModel.find(b)
.then(exUs =>
if(exUs)
console.log(exUs)
else
console.log("no")
)
答案
find
总是返回一个cursor
(如果没有文档,则可以为空[]
),因此您的if条件将始终为true,并且如果文档为零,它将打印空数组[]
(永远不会返回游标空值)。
以上是关于为什么在mongoose中使用find方法时console.log返回空数组?的主要内容,如果未能解决你的问题,请参考以下文章
mongoose .find() 方法返回具有不需要的属性的对象
Mongoose - find(,cb) 和 find().exec(cb) 有啥区别?