What is returned from Mongoose query that finds no matches?

后端 未结 2 1455
太阳男子
太阳男子 2021-01-30 20:59

I\'m a little confused reading the Mongoose documentation.

If I run a query in mongoose which matches no documents in the collection, what are the values of err

2条回答
  •  长发绾君心
    2021-01-30 21:38

    It depends on the query. If it is a find, then results == []. If it is a findOne, then results == null. No errors if everything else is ok.

提交回复
热议问题