在
mongoose documentation中,它经常列出某些查询运算符(如findOneAndUpdate)的可选回调,但是,它没有提到回调所采用的参数(参数).他们是什么,我怎么知道?
此外,如果条件,更新等是可选的,并且我想在结尾处指定回调,我是否必须传入空值或空对象,或者我可以只指定回调 – 而且软管是否知道Mongoose?
Model.findOneAndUpdate([conditions],[update],[options],[callback])
解决方法
对于几乎所有
mongoose queries,提供的回调函数将在
node callback pattern回调中调用两个参数(错误,结果),如文档中所述:
Anywhere a callback is passed to a query in Mongoose,the callback follows the pattern
callback(error,results)
. What results is depends on the operation: ForfindOne()
it is a 07002,find()
a 07003,count()
the 07004,update()
the 07005,etc. The 07006 provide more detail on what is passed to the callbacks.