即使遇到以下错误,我仍在使用最新版本的mongodb 3.6 …
MongoError: The 'cursor' option is required, except for aggregate with the explain argument
const user = await User.aggregate([ { $group: { _id: '$_id', domain: { $push: "$domain" }, domain: { $push: "$email" }, domain: { $push: "$userName" } } } ])
谢谢@Neil Lunn
更新猫鼬。5.0之前的Mongoose版本与MongoDB 3.6不正确匹配。MongoDB 3.6将聚合API从“ cursor optional”更改为“ cursor only”,并且较旧的mongoose版本通过尝试使用不建议使用的方法来请求数组来打破这一点。