Mongodb - 解决 ( aggregate聚合管道 ) $match 根据 id 匹配 返回 [ ] 的问题

时间:2022-03-01 03:40:53

需要对 id 进行转换

const mongoose = require(‘mongoose‘) var ObjectId = mongoose.Types.ObjectId;   await Users.aggregate([     {        $match : { "_id":new ObjectId("5asdasdasc66b6aae717b")}      }  ])