node.js – 传递给Mongoose回调的参数

前端之家收集整理的这篇文章主要介绍了node.js – 传递给Mongoose回调的参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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: For findOne() 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.

猜你在找的Node.js相关文章