📜  如何在聚合中使用 id - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:33.845000             🧑  作者: Mango

代码示例1
const ObjectId = mongoose.Types.ObjectId;
const User = mongoose.model('User')

User.aggregate([
  {
    $match: { _id: ObjectId('560c24b853b558856ef193a3') }
  }
])